Skip to content

Commit

Permalink
NHIRS-148: Fixed issue with FlushCache failing. (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcarthur committed Nov 15, 2021
1 parent 7f5b03b commit 52581c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ProcessMultipliers/processMultipliers.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def checkOutputFolders(self, working_dir, type_mapping):
:param dict type_mapping: dict of shielding, terrain, topographic
'''
dir_check = os.path.isdir(working_dir)
if dir_check == False:
if dir_check is False:
os.makedirs(working_dir)
log.info('Creating directories for outputs')
else:
Expand Down

0 comments on commit 52581c6

Please sign in to comment.