Fix watch_assets call from paver update_assets.

The paver task arg unwrapper expects it to come in a list.
This commit is contained in:
David Ormsbee
2017-12-04 17:20:27 -05:00
parent bcccd48871
commit f883aa9487

View File

@@ -962,6 +962,6 @@ def update_assets(args):
'background': not args.debug,
'theme_dirs': args.theme_dirs,
'themes': args.themes,
'wait': float(args.wait)
'wait': [float(args.wait)]
},
)