From c74a5198c51d0efcef81f1b00430228f7120aacc Mon Sep 17 00:00:00 2001 From: AltF4 Date: Sat, 4 Jan 2014 20:06:43 -0700 Subject: [PATCH] Fix for bad autostart command Was missing a space between ./pinger.py and the first argument --- pinger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinger.py b/pinger.py index d11479f..a7d9ff7 100755 --- a/pinger.py +++ b/pinger.py @@ -60,7 +60,7 @@ parser.add_argument("-m", "--maxlog", help="Maximum amount of pings to log. Defa args = parser.parse_args() #accumulate the arguments for use later -arguments = "" +arguments = " " for arg in sys.argv[1:]: arguments += arg + " "