fixed indents

This commit is contained in:
cogitokat 2013-06-23 16:48:51 -03:00
parent 0b5885e1a9
commit 95369248f4
1 changed files with 4 additions and 4 deletions

View File

@ -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):