From a531a1550da286365409087dd5fc82235855ef92 Mon Sep 17 00:00:00 2001 From: Guy Van Sanden Date: Wed, 20 Mar 2024 11:39:31 +0100 Subject: [PATCH] Added comma --- src/tellme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tellme.py b/src/tellme.py index ab8c301..e499713 100755 --- a/src/tellme.py +++ b/src/tellme.py @@ -54,7 +54,7 @@ parser.add_argument("-m", "--message", default="Your process finished", help="Me parser.add_argument('-t', '--tts', default=False, action='store_true', help="Send message to TTS") parser.add_argument('-v', '--version', action='version', version=versionstring) parser.add_argument('-p', '--pid', action="store", dest="pid", type=int, default=0) -parser.add_argument('-n', '--notify' action="store", dest="notify", default=None, help="Notify specific id") +parser.add_argument('-n', '--notify', action="store", dest="notify", default=None, help="Notify specific id") parser.add_argument('-i', '--interval', action="store", dest="interval", type=int, default=5, help="Set the interval of commands like watch that use it") parser.add_argument('-w', '--watch', action="store", dest="watchcommand", help="Run the given command every n or 5 minutes") parser.add_argument('-c', '--config', default=home +"/.config/tellme/config.json" ,help="Path to config file")