summaryrefslogtreecommitdiffstats
path: root/fbconnect
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-02-27 23:26:07 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-02-27 23:26:07 -0500
commitecd55063697ed23d125098fd143bcefbcc3b942d (patch)
treef976d3ddbd86dead9a91d86bd4b274f1615700b6 /fbconnect
parente554090b2e9cd08a817f02e2196dd5c359dae0e9 (diff)
downloadaskbot-ecd55063697ed23d125098fd143bcefbcc3b942d.tar.gz
askbot-ecd55063697ed23d125098fd143bcefbcc3b942d.tar.bz2
askbot-ecd55063697ed23d125098fd143bcefbcc3b942d.zip
two bugfixes
Diffstat (limited to 'fbconnect')
-rwxr-xr-xfbconnect/pjson.py4
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):