Skip to content

Commit

Permalink
fix return_code in operations.upload
Browse files Browse the repository at this point in the history
  • Loading branch information
trehn committed Jul 13, 2017
1 parent d43c4d4 commit 562df00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundlewrap/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def upload(
]
scp_process = run_local(scp_command)

if scp_process.returncode != 0:
if scp_process.return_code != 0:
raise RemoteException(_(
"Upload to {host} failed for {failed}:\n\n{result}\n\n"
).format(
Expand Down

0 comments on commit 562df00

Please sign in to comment.