diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-05-20 10:13:54 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-05-20 10:13:59 +0200 |
commit | ec8a0753d56e3a5ded949b7aecca37c9e34cba86 (patch) | |
tree | ca4d5443b89e462410b31205ffa9fd8119a75720 | |
parent | dff9d2f2931c1c51eef92fc8cfbbb82bf34a97ae (diff) | |
parent | c6e36b0492dc870c49dafbfb7aa76e28202f8ef0 (diff) |
Merge pull request #4188
c6e36b0 Fix NameError in macdeploy script (Federico Bond)
-rwxr-xr-x | contrib/macdeploy/macdeployqtplus | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus index 5c310df1fc..599713fbbb 100755 --- a/contrib/macdeploy/macdeployqtplus +++ b/contrib/macdeploy/macdeployqtplus @@ -580,7 +580,7 @@ try: except RuntimeError as e: if verbose >= 1: sys.stderr.write("Error: %s\n" % str(e)) - sys.exit(ret) + sys.exit(1) # ------------------------------------------------ @@ -593,7 +593,7 @@ if config.plugins: except RuntimeError as e: if verbose >= 1: sys.stderr.write("Error: %s\n" % str(e)) - sys.exit(ret) + sys.exit(1) # ------------------------------------------------ |