Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
Merge pull request #32 from ZuzanaLietavcova/my_sgmanager
Browse files Browse the repository at this point in the history
PAAS-11126 exit code correction
  • Loading branch information
Petr Benas authored Sep 6, 2017
2 parents 68659cf + c2d6aef commit 1feed16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='sgmanager',
version='1.4.6',
version='1.4.7',
packages=['sgmanager', 'sgmanager.logger', 'sgmanager.securitygroups'],
entry_points={
'console_scripts': ['sgmanager = sgmanager.cli:main']
Expand Down
2 changes: 1 addition & 1 deletion sgmanager.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%global with_check 0

Name: sgmanager
Version: 1.4.6
Version: 1.4.7
Release: 1%{?dist}
Summary: Tooling for EC2 security groups management

Expand Down
2 changes: 1 addition & 1 deletion sgmanager/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def main():
"""
try:
cli()
except (KeyboardInterrupt, SystemExit):
except KeyboardInterrupt:
# User interruption
sys.exit(1)
except Exception as e:
Expand Down

0 comments on commit 1feed16

Please sign in to comment.