Browse Source

Fix exception raising.

main
Vincent Bernat 13 years ago
parent
commit
16b763887a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      hyde/ext/plugins/combine.py

+ 1
- 1
hyde/ext/plugins/combine.py View File

@@ -40,7 +40,7 @@ class CombinePlugin(Plugin):
try:
files = config.files
except AttributeError:
raise "No resources to combine for [%s]" % resource
raise AttributeError("No resources to combine for [%s]" % resource)
if type(files) is str:
files = [ files ]



Loading…
Cancel
Save