tue instead of thu
This commit is contained in:
parent
c27dfd39fb
commit
4eb7eba431
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ def print_usage():
|
||||||
./mensaplan.py place
|
./mensaplan.py place
|
||||||
Print the todays menu at the 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.
|
Print the menu at the place of the given weekday.
|
||||||
|
|
||||||
Supported places are:
|
Supported places are:
|
||||||
|
@ -49,7 +49,7 @@ def get_day():
|
||||||
if len(sys.argv) == 3:
|
if len(sys.argv) == 3:
|
||||||
if sys.argv[2] == "mon":
|
if sys.argv[2] == "mon":
|
||||||
day = 0
|
day = 0
|
||||||
elif sys.argv[2] == "thu":
|
elif sys.argv[2] == "tue":
|
||||||
day = 1
|
day = 1
|
||||||
elif sys.argv[2] == "wed":
|
elif sys.argv[2] == "wed":
|
||||||
day = 2
|
day = 2
|
||||||
|
|
Reference in a new issue