diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-18 13:45:59 +0100 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-18 13:45:59 +0100 |
| commit | f595a339a65cf59b45a9f4c853cac456ff81c467 (patch) | |
| tree | a9e8c226938be565e6e5679511a5d4451eac73c4 | |
| parent | 4267cbcc29781ddcac00e259dfe05f3a26fbc2ec (diff) | |
| download | abrt-f595a339a65cf59b45a9f4c853cac456ff81c467.tar.gz abrt-f595a339a65cf59b45a9f4c853cac456ff81c467.tar.xz abrt-f595a339a65cf59b45a9f4c853cac456ff81c467.zip | |
s/os.exit/sys.exit - closes rhbz#556313
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| -rw-r--r-- | src/Gui/CCMainWindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py index 5ffc027..dcb71ae 100644 --- a/src/Gui/CCMainWindow.py +++ b/src/Gui/CCMainWindow.py @@ -11,7 +11,7 @@ try: except RuntimeError,e: # rhbz#552039 print e - os.exit() + sys.exit() import gtk.glade try: import rpm |
