From a6f19ac417880536c89361b2593667e1294026e0 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sun, 14 Jul 2024 15:07:25 -0500 Subject: Dockerize application --- on_this_day.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'on_this_day.py') diff --git a/on_this_day.py b/on_this_day.py index 970cec9..96e8a69 100644 --- a/on_this_day.py +++ b/on_this_day.py @@ -31,7 +31,7 @@ def get_today_wikipedia(): def get_week_holidays(): print("getting holidays") - command = "calendar -f /usr/share/calendar/calendar.mark -A 14".split(" ") + command = "calendar -f /data/calendar.mark -A 14".split(" ") output = subprocess.check_output(command) output = output.decode("utf-8").strip().split("\n") return "\n
  • ".join(output) or "No holidays this fortnight." -- cgit v1.2.3