Skip to content

Commit

Permalink
vmap: bugfix in run_cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
dshean committed Dec 5, 2018
1 parent f06a1b4 commit fe30bd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmap/vmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def run_cmd(bin, args, **kw):
"Install ASP and ensure it is in your PATH env variable\n"
"https://ti.arc.nasa.gov/tech/asr/intelligent-robotics/ngt/stereo/" % bin)
sys.exit(msg)
call = [binpath]
call = [binpath,]
call.extend(args)
print(' '.join(call))
try:
Expand Down

0 comments on commit fe30bd7

Please sign in to comment.