Skip to content
Snippets Groups Projects
Commit 9388d874 authored by Tilman Vatteroth's avatar Tilman Vatteroth :robot:
Browse files

* prüfe nur die nächsten 2 anstatt 7 tage

parent 36b9d820
Branches
No related tags found
No related merge requests found
......@@ -22,9 +22,9 @@ aparser.add_argument(
"--preview",
dest='day_diff',
action="store_const",
const=7,
const=2,
default=1,
help="Überprüfe die nächsten 7 Tage statt nur den nächsten Tag."
help="Überprüfe die nächsten 2 Tage statt nur den nächsten Tag."
)
args = aparser.parse_args()
# Überschreibe den Telegramkanal, wenn einer angegeben wurde. (Praktisch für Debugging)
......
......@@ -31,9 +31,9 @@ aparser.add_argument(
"--preview",
dest='day_diff',
action="store_const",
const=7,
const=2,
default=1,
help="Überprüfe die nächsten 7 Tage statt nur den nächsten Tag."
help="Überprüfe die nächsten 2 Tage statt nur den nächsten Tag."
)
args = aparser.parse_args()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment