Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion esgprep/mapfile/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def run(args):
result = remove(WORKING_EXTENSION, mapfile)
if quiet:
output_control.stdout_on()
print result
print(result)
output_control.stdout_off()
else:
Print.result(result)
Expand Down
2 changes: 1 addition & 1 deletion esgprep/utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
VERSION = '2.9.7' # remember to change VERSION_DATE when updating

# Date
VERSION_DATE = datetime(year=2019, month=04, day=15).strftime("%Y-%d-%m")
VERSION_DATE = datetime(year=2019, month=4, day=15).strftime("%Y-%d-%m")

# Shell colors map
SHELL_COLORS = {'red': 1,
Expand Down