Various fixes to plugin assetlinking command.

Actually trying to run the command helps figure out what needs to be
fixed :)

This commit sponsored by Justin Nichol.  Thank you!
This commit is contained in:
Christopher Allan Webber
2013-05-22 14:07:41 -05:00
parent 491029bc36
commit df69695d9e
2 changed files with 7 additions and 7 deletions

View File

@@ -119,9 +119,9 @@ def get_staticdirector(app_config):
# Let plugins load additional paths
for plugin_static in hook_runall("static_setup"):
direct_domains[plugin_static['name']] = "%s/%s" % (
direct_domains[plugin_static.name] = "%s/%s" % (
app_config['plugin_web_path'].rstrip('/'),
plugin_static['name'])
plugin_static.name)
return staticdirect.StaticDirect(
direct_domains)