Tabs->spaces
authorJosh Roesslein <jroesslein@gmail.com>
Tue, 8 Sep 2009 15:09:45 +0000 (10:09 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Tue, 8 Sep 2009 15:09:45 +0000 (10:09 -0500)
tweepy/binder.py

index 7b4f8a501fb91f0e251823258b16f7c6eae16708..5595db35089ffdf174fb8b5b2247e1509fd0d000 100644 (file)
@@ -93,12 +93,12 @@ def bind_api(path, parser, allowed_param=None, method='GET', require_auth=False,
     resp = conn.getresponse()
 
     # If an error was returned, throw an exception
-       if resp.status != 200:
-               try:
-                       error_msg = parse_error(resp.read())
-               except Exception:
-                       error_msg = "Unkown twitter error response received: status=%s" % resp.status
-               raise TweepError(error_msg)
+    if resp.status != 200:
+        try:
+            error_msg = parse_error(resp.read())
+        except Exception:
+            error_msg = "Unkown twitter error response received: status=%s" % resp.status
+        raise TweepError(error_msg)
 
     # Pass returned body into parser and return parser output
     out =  parser(resp.read(), api)