diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-24 13:51:04 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-24 13:51:04 -0400 |
commit | f76b7a6ba133591612a75430ffb494bf42795610 (patch) | |
tree | b85d760e1635e66bfe895f7400377100b3a9e8c7 /ipsutils/task.py | |
parent | c6a527f8159274338f7ca6ec6bce588447dbd8f3 (diff) | |
download | ipsutils-f76b7a6ba133591612a75430ffb494bf42795610.tar.gz |
Add __version__ check
Diffstat (limited to 'ipsutils/task.py')
-rw-r--r-- | ipsutils/task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipsutils/task.py b/ipsutils/task.py index 7b45309..407eac9 100644 --- a/ipsutils/task.py +++ b/ipsutils/task.py @@ -30,7 +30,7 @@ class TaskController(object): status = stack_entry.run() if type(status) == type(True): if not status: - print("Internal error: {0:s}".format(status)) + print("Internal error: {0:d}".format(status)) exit(status) else: if status > 0: |