Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2008-12-02 18:10:31 +0300
committerYann Leboulanger <asterix@lagaule.org>2008-12-02 18:10:31 +0300
commit7701f29beb6e0d1b01edb35b871710df1a729f09 (patch)
tree78c4caf9982c2d0e2dde2d973cb28379d04f0f55 /src/gtkexcepthook.py
parente2118de64ccc1c40fdae04ba3a3a522137a8ef24 (diff)
[thorstenp] fix undefined variables
Diffstat (limited to 'src/gtkexcepthook.py')
-rw-r--r--src/gtkexcepthook.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkexcepthook.py b/src/gtkexcepthook.py
index 4719f520d..e75793251 100644
--- a/src/gtkexcepthook.py
+++ b/src/gtkexcepthook.py
@@ -104,6 +104,6 @@ if os.name == 'nt' or not sys.stderr.isatty():
if __name__ == '__main__':
_excepthook_save = sys.excepthook
sys.excepthook = _info
- print x # this always tracebacks
+ raise Exception()
# vim: se ts=3: