Skip to content

Commit db8943e

Browse files
committed
fix bark about != None (NO_JIRA)
1 parent 6eb4f50 commit db8943e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/refcodes_with_properties/refcodes_with_properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
print_values = args.get_values
4646

4747
outfile = sys.stdout
48-
if args.output_file != None:
48+
if args.output_file is not None:
4949
outfile = open(args.output_file, 'wb')
5050

5151
filterer = entry_property_calculator.parse_control_file(open(control_file, "r").readlines())

0 commit comments

Comments
 (0)