summaryrefslogtreecommitdiffstats
path: root/fbconnect
diff options
context:
space:
mode:
authorJoseph Turian <turian@gmail.com>2010-02-17 18:35:03 -0500
committerJoseph Turian <turian@gmail.com>2010-02-17 18:35:03 -0500
commitb004fa94f74708b0850bc0a20ae572cda3a03800 (patch)
treee6195569ecbeefd504db29455985ac821dfccc27 /fbconnect
parent1b86735fb583af4d4ff8579ac7be7fab71957c5e (diff)
downloadaskbot-b004fa94f74708b0850bc0a20ae572cda3a03800.tar.gz
askbot-b004fa94f74708b0850bc0a20ae572cda3a03800.tar.bz2
askbot-b004fa94f74708b0850bc0a20ae572cda3a03800.zip
Bugfix in fbconnect/pjson.py (indentation error).
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):