diff options
author | Mark Powers <mark@marks.kitchen> | 2021-01-05 22:27:55 -0600 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2021-01-05 22:27:55 -0600 |
commit | c9b05519f41344e9f7549ed992b0a98ec720f933 (patch) | |
tree | 5ef0e27dd3cbe4132139fd254e1c1fa2a75cdfb4 | |
parent | efd51dae4a815aacab71e41b59d2eefde5af9abf (diff) |
Update path for the today command
-rwxr-xr-x | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ def today(argv): if len(argv) != 0: print("Usage: ./main.py today") today = datetime.datetime.now() - path = today.strftime("%Y/%b/%d").lower() + path = today.strftime("journal/%Y/%b/%d").lower() if get_single_page([path]) is not None: edit([path]) else: |