shithub: pokecrystal

Download patch

ref: 95369248f4400ea01b2f11216286c71bc515fe69
parent: 0b5885e1a96e9242fc31d9fdbfaf9c7c6097dd19
author: cogitokat <[email protected]>
date: Sun Jun 23 12:48:51 EDT 2013

fixed indents

--- a/extras/gfx.py
+++ b/extras/gfx.py
@@ -21,10 +21,10 @@
     """
     try:
         os.makedirs(path)
-        except OSError as exc: # Python >2.5
-            if exc.errno == errno.EEXIST:
-                pass
-            else: raise
+    except OSError as exc: # Python >2.5
+        if exc.errno == errno.EEXIST:
+            pass
+        else: raise
 
 
 def hex_dump(input, debug = True):