Skip to content

Commit

Permalink
Merge pull request #591 from ratt-ru/version-142
Browse files Browse the repository at this point in the history
remove misplaced + sign
  • Loading branch information
SpheMakh authored May 1, 2020
2 parents 743c81d + 5a51957 commit 5e3193a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stimela/cargo/cab/pycasacore/src/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
tfile.write(custom_script)
tfile.flush()

_runc = " ".join([cab["binary"] + tfile.name])
_runc = " ".join([cab["binary"], tfile.name])
try:
subprocess.check_call(shlex.split(_runc))
finally:
Expand Down

0 comments on commit 5e3193a

Please sign in to comment.