Skip to content
Snippets Groups Projects
Commit b2352907 authored by Recolic's avatar Recolic :house_with_garden:
Browse files

.

parent 440c34e4
No related branches found
No related tags found
No related merge requests found
......@@ -25,11 +25,9 @@ def code_of_today(date_str=None):
today_str = f"{month:02d}{day:02d}"
today_code = f"{month_code}{day_code}"
if os.environ.get('short') is None:
if os.environ.get('short') == "0":
print(f"{today_str} -> ", file=sys.stderr, end="")
print(f"{today_code}")
else:
print(today_code)
print(today_code)
if __name__ == "__main__":
if len(sys.argv) > 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment