Skip to content

Commit 054a59f

Browse files
committed
Undo debug output of parsing exceptions
1 parent bd088dc commit 054a59f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hamlpy/elements.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ def _parse_attribute_dictionary(self, attribute_dict_string):
169169
attributes_dict[key] = value
170170
self.attributes = self.attributes.strip()
171171
except Exception, e:
172-
#raise Exception('failed to decode: %s' % attribute_dict_string)
173-
raise Exception('failed to decode: %s. Details: %s'%(attribute_dict_string, e))
172+
raise Exception('failed to decode: %s' % attribute_dict_string)
173+
#raise Exception('failed to decode: %s. Details: %s'%(attribute_dict_string, e))
174174

175175
return attributes_dict
176176

0 commit comments

Comments
 (0)