diff options
| author | Tom Ritter <tom@ritter.vg> | 2016-01-26 16:35:50 -0500 |
|---|---|---|
| committer | Tom Ritter <tom@ritter.vg> | 2016-01-26 16:35:50 -0500 |
| commit | 892af69a33d4f0192bba1d3b0bc2ad688578a576 (patch) | |
| tree | eb3b6b02320bd61328f10466927f2f499a468b75 /main.py | |
| parent | 869de79cc6483f5583b2f9bddd08720d103c8bec (diff) | |
Add day and daily at noon options
Diffstat (limited to 'main.py')
| -rwxr-xr-x | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ from servers import StatusSite, PingSite if __name__ == "__main__": parser = argparse.ArgumentParser(description="Check your stuff.") parser.add_argument('-m', '--mode', choices=['daemon', 'cron'], required=True, help='The mode the application will run it.') - parser.add_argument('-c', '--crontime', choices=['minute', 'hour'], help='When in cron mode, the increment of cron.') + parser.add_argument('-c', '--crontime', choices=['minute', 'hour', 'day', 'day_noon'], help='When in cron mode, the increment of cron.') parser.add_argument('-v', action="store_true", help="Print verbose debugging information to stderr") args = parser.parse_args() |
