summaryrefslogtreecommitdiff
path: root/gfx.py
diff options
context:
space:
mode:
Diffstat (limited to 'gfx.py')
-rw-r--r--gfx.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gfx.py b/gfx.py
index f13f23d..3c21f98 100644
--- a/gfx.py
+++ b/gfx.py
@@ -21,10 +21,10 @@ def mkdir_p(path):
"""
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):