diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-09-03 18:01:43 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-09-03 18:01:43 +0000 |
commit | 17eb99eea718191b619277754bf15e6a7554d916 (patch) | |
tree | aa39d3583025b4a49f7492245981cd519c6855e9 /src/common.py | |
parent | 43654505fb2efa3994081e68613e5bd8dd033660 (diff) | |
download | poezio-17eb99eea718191b619277754bf15e6a7554d916.tar.gz poezio-17eb99eea718191b619277754bf15e6a7554d916.tar.bz2 poezio-17eb99eea718191b619277754bf15e6a7554d916.tar.xz poezio-17eb99eea718191b619277754bf15e6a7554d916.zip |
python 3 only. Fixes all EncodingError bugs :))))
Diffstat (limited to 'src/common.py')
-rw-r--r-- | src/common.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common.py b/src/common.py index 75a0b940..dce4b382 100644 --- a/src/common.py +++ b/src/common.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - # some functions coming from gajim sources (thanks) ## Copyright (C) 2003-2008 Yann Leboulanger <asterix AT lagaule.org> @@ -188,7 +186,7 @@ def temp_failure_retry(func, *args, **kwargs): while True: try: return func(*args, **kwargs) - except (os.error, IOError, select.error), ex: + except (os.error, IOError, select.error) as ex: if ex.errno == errno.EINTR: continue else: |