Skip to content

Commit

Permalink
V1.12.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Yates authored and Jason Yates committed Feb 25, 2019
1 parent 4ac03a5 commit 22cda97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions genserv.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,13 +673,13 @@ def GetAddOns():
AddOnCfg['genexercise']['parameters']['exercise_hour'] = CreateAddOnParam(
ConfigFiles[GENEXERCISE_CONFIG].ReadValue("exercise_hour", return_type = int, default = 12),
'int',
"The hour of the exercise time.",
"The hour of the exercise time. Valid input is 0 - 23.",
bounds = "required digits range:0:23",
display_name = "Exercise Time Hour")
AddOnCfg['genexercise']['parameters']['exercise_minute'] = CreateAddOnParam(
ConfigFiles[GENEXERCISE_CONFIG].ReadValue("exercise_minute", return_type = int, default = 0),
'int',
"The minute of the exercise time.",
"The minute of the exercise time. Valid input is 0 - 59",
bounds = "required digits range:0:59",
display_name = "Exercise Time Minute")
AddOnCfg['genexercise']['parameters']['exercise_day_of_month'] = CreateAddOnParam(
Expand Down

0 comments on commit 22cda97

Please sign in to comment.