diff options
author | cogitokat <katherinej.harrison@gmail.com> | 2013-06-23 16:48:51 -0300 |
---|---|---|
committer | cogitokat <katherinej.harrison@gmail.com> | 2013-06-23 16:48:51 -0300 |
commit | 95369248f4400ea01b2f11216286c71bc515fe69 (patch) | |
tree | 7d042889b40ada4df3e3b9c01cedb256026c383a | |
parent | 0b5885e1a96e9242fc31d9fdbfaf9c7c6097dd19 (diff) |
fixed indents
-rw-r--r-- | extras/gfx.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extras/gfx.py b/extras/gfx.py index f13f23dbc..3c21f9809 100644 --- a/extras/gfx.py +++ b/extras/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): |