Skip to content

Commit

Permalink
Python 2 compatibility fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Liz4v committed Feb 11, 2016
1 parent b48fdaa commit 10e0637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_oneall/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class MissingOneAllSettings(KeyError):
def __init__(self, msg=None):
msg = 'Missing or invalid settings. Check django-oneall documentation for further info. ' + (msg or '')
super().__init__(msg)
super(MissingOneAllSettings, self).__init__(msg)


class AppSettings(object):
Expand Down

0 comments on commit 10e0637

Please sign in to comment.