summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorLoïc Guégan <manzerbredes@mailbox.org>2025-07-25 12:08:12 +0200
committerLoïc Guégan <manzerbredes@mailbox.org>2025-07-25 12:08:12 +0200
commit3ae5cd2a618b2a843391aead0b25f57554ea2e68 (patch)
tree6504d25d7874a0b7aac1796ed66d38a554c30466 /main.py
parentcc04a362ae2a683d14d979b0872b08a9f939fd52 (diff)
Minor changes
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index e70e2b1..d56cf99 100755
--- a/main.py
+++ b/main.py
@@ -99,7 +99,7 @@ if not i["output"]["tables"]["calendar"]["hidden"]:
getevents(getnextdayn(d, 2)),
getevents(getnextdayn(d, 3)),
getevents(getnextdayn(d, 4))])
- print(t)
+ print(t.get_formatted_string(i["output"]["format"]))
for j in range(0,o["week_line_skip"]):
print("")
d=getnextmonday(d)
@@ -128,4 +128,4 @@ if not i["output"]["tables"]["deadlines"]["hidden"]:
msg=i["output"]["tables"]["deadlines"]["msg_deadline"].format(a)
t.add_row([d.isocalendar().week,formatday(d),msg])
t.align["Assignment"] = "l"
- print(t)
+ print(t.get_formatted_string(i["output"]["format"]))