This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
hyde
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix exception raising.
main
Vincent Bernat
13 years ago
parent
12efa56ce2
commit
16b763887a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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 ]
Write
Preview
Loading…
Cancel
Save