Fix for bad autostart command

Was missing a space between ./pinger.py and the first argument
This commit is contained in:
AltF4 2014-01-04 20:06:43 -07:00
parent fdb23df9c0
commit c74a5198c5

View File

@ -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 + " "