Add error code for VModhash errors.

This commit is contained in:
Logan Hanks
2012-09-10 16:45:30 -07:00
parent 983baa0214
commit 303b116bf1

View File

@@ -107,6 +107,7 @@ error_list = dict((
('BAD_IMAGE', _('image problem')),
('DEVELOPER_ALREADY_ADDED', _('already added')),
('TOO_MANY_DEVELOPERS', _('too many developers')),
('BAD_HASH', _("i don't believe you.")),
))
errors = Storage([(e, e) for e in error_list.keys()])