Skip to content

Commit 4ec541d

Browse files
committed
Fixed broken elif.
1 parent 294bd30 commit 4ec541d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/multi_component_hydrogen_bond_propensity/multi_component_hydrogen_bond_propensity_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ def main(structure, work_directory, failure_directory, library, csdrefcode):
419419
refcode = True
420420
else:
421421
parser.error('%s - file not found.' % args.input_structure)
422-
elif not os.path.isdir(args.directory):
422+
if not os.path.isdir(args.directory):
423423
os.makedirs(args.directory)
424424
if not os.path.isdir(args.coformer_library):
425425
parser.error('%s - library not found.' % args.coformer_library)

0 commit comments

Comments
 (0)