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 | ad1aeeec5351f42104c7d665c216e4cf0885ce27 (patch) | |
tree | c321372cc8039ab27962d7364d2b576283a0d935 /gfx.py | |
parent | 88313fd5afb283836e21c67ba1de75b48525a1e7 (diff) |
fixed indents
original-commit-id: 95369248f4400ea01b2f11216286c71bc515fe69
Diffstat (limited to 'gfx.py')
-rw-r--r-- | gfx.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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): |