aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Powers <mark@marks.kitchen>2021-01-05 22:27:55 -0600
committerMark Powers <mark@marks.kitchen>2021-01-05 22:27:55 -0600
commitc9b05519f41344e9f7549ed992b0a98ec720f933 (patch)
tree5ef0e27dd3cbe4132139fd254e1c1fa2a75cdfb4
parentefd51dae4a815aacab71e41b59d2eefde5af9abf (diff)
Update path for the today command
-rwxr-xr-xmain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.py b/main.py
index f792d05..a914bca 100755
--- a/main.py
+++ b/main.py
@@ -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: