diff options
Diffstat (limited to 'wqflask/utility/external.py')
-rw-r--r-- | wqflask/utility/external.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wqflask/utility/external.py b/wqflask/utility/external.py index 50afea08..805d2ffe 100644 --- a/wqflask/utility/external.py +++ b/wqflask/utility/external.py @@ -4,6 +4,7 @@ import os import sys import subprocess + def shell(command): if subprocess.call(command, shell=True) != 0: - raise Exception("ERROR: failed on "+command) + raise Exception("ERROR: failed on " + command) |