diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-21 22:03:12 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-21 22:03:12 -0400 |
commit | 88ecb4ae0712b7deb4e01d332cd98a79d16bfa38 (patch) | |
tree | 2890d9c4cae56d2e0ee495ba3ec0517710015049 /ipsutils | |
parent | cf78730084c30c855b66536636f1f3937ba0c79c (diff) | |
download | ipsutils-88ecb4ae0712b7deb4e01d332cd98a79d16bfa38.tar.gz |
Return status displayed at exit
Diffstat (limited to 'ipsutils')
-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 328889a..7712f27 100644 --- a/ipsutils/task.py +++ b/ipsutils/task.py @@ -29,7 +29,7 @@ class TaskController(object): for stack_entry in self.stack: status = stack_entry.run() if not status: - print("Exiting...") + print("Exiting... {0:d}".format(status)) exit(status) |