Commit f883aa94 by David Ormsbee

Fix watch_assets call from paver update_assets.

The paver task arg unwrapper expects it to come in a list.
parent bcccd488
...@@ -962,6 +962,6 @@ def update_assets(args): ...@@ -962,6 +962,6 @@ def update_assets(args):
'background': not args.debug, 'background': not args.debug,
'theme_dirs': args.theme_dirs, 'theme_dirs': args.theme_dirs,
'themes': args.themes, 'themes': args.themes,
'wait': float(args.wait) 'wait': [float(args.wait)]
}, },
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment