diff options
Diffstat (limited to 'fbconnect')
-rwxr-xr-x | fbconnect/pjson.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fbconnect/pjson.py b/fbconnect/pjson.py index 6a395b97..273b684e 100755 --- a/fbconnect/pjson.py +++ b/fbconnect/pjson.py @@ -155,8 +155,8 @@ class JsonReader(object): except KeyError: try: result = int(ch) - except ValueError: - raise ReadException, "The character %s is not a hex digit." % ch + except ValueError: + raise ReadException, "The character %s is not a hex digit." % ch return result def _readComment(self): |