propagate SystemExit correctly in IS
This commit is contained in:
parent
e7e2531449
commit
608a149d5c
|
|
@ -163,7 +163,7 @@ class IS(object):
|
|||
callback(line)
|
||||
else:
|
||||
callback(parse(line))
|
||||
except KeyboardInterrupt:
|
||||
except (KeyboardInterrupt, SystemExit):
|
||||
raise
|
||||
except (ConnectionDrop, ConnectionError):
|
||||
self.close()
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = '0.6.21'
|
||||
__version__ = '0.6.22'
|
||||
|
|
|
|||
Loading…
Reference in New Issue