propagate SystemExit correctly in IS

This commit is contained in:
Rossen Georgiev 2014-12-15 03:35:54 +00:00
parent e7e2531449
commit 608a149d5c
2 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ class IS(object):
callback(line)
else:
callback(parse(line))
except KeyboardInterrupt:
except (KeyboardInterrupt, SystemExit):
raise
except (ConnectionDrop, ConnectionError):
self.close()

View File

@ -1 +1 @@
__version__ = '0.6.21'
__version__ = '0.6.22'