tue instead of thu

This commit is contained in:
mmk2410 2016-01-18 17:37:32 +01:00
parent c27dfd39fb
commit 4eb7eba431
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ def print_usage():
./mensaplan.py place
Print the todays menu at the place.
./mensaplan.py place [mon, thu, wed, thur, fri]
./mensaplan.py place [mon, tue, wed, thur, fri]
Print the menu at the place of the given weekday.
Supported places are:
@ -49,7 +49,7 @@ def get_day():
if len(sys.argv) == 3:
if sys.argv[2] == "mon":
day = 0
elif sys.argv[2] == "thu":
elif sys.argv[2] == "tue":
day = 1
elif sys.argv[2] == "wed":
day = 2