Fix for bad autostart command
Was missing a space between ./pinger.py and the first argument
This commit is contained in:
parent
fdb23df9c0
commit
c74a5198c5
|
@ -60,7 +60,7 @@ parser.add_argument("-m", "--maxlog", help="Maximum amount of pings to log. Defa
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
#accumulate the arguments for use later
|
#accumulate the arguments for use later
|
||||||
arguments = ""
|
arguments = " "
|
||||||
for arg in sys.argv[1:]:
|
for arg in sys.argv[1:]:
|
||||||
arguments += arg + " "
|
arguments += arg + " "
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user