diff options
| -rw-r--r-- | ports/cc3200/tools/uniflash.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/cc3200/tools/uniflash.py b/ports/cc3200/tools/uniflash.py index 83445a12d..2fa2c02f4 100644 --- a/ports/cc3200/tools/uniflash.py +++ b/ports/cc3200/tools/uniflash.py @@ -41,7 +41,7 @@ def execute(command): if exitCode == 0: return cmd_log else: - raise ProcessException(command, exitCode, output) + raise subprocess.CalledProcessError(exitCode, command, output) def main(): |
