Typo's causing pre-logging issues fixed

This commit is contained in:
echel0n 2014-04-14 10:43:19 -07:00
commit d65448db87
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ def create_destination(outputDestination):
def makeDir(path):
if not os.path.isdir(path):
try:
os.makedirs( path)
os.makedirs(path)
except OSError:
return False
return True