diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2015-03-18 16:09:38 -0300 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2015-03-18 16:10:01 -0300 |
commit | 30718ff672ad778b9ee3eccd06b295f88d023a85 (patch) | |
tree | 38395d36aff1135879be9b518dc5fe5150a1405a | |
parent | caea3e8835eb5d77e0f65aea35b4d948fde119ae (diff) |
Removed if that was not being used
-rw-r--r-- | service/pixelated/support/ext_protobuf.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/service/pixelated/support/ext_protobuf.py b/service/pixelated/support/ext_protobuf.py index 06d7bcea..1d6fc5fc 100644 --- a/service/pixelated/support/ext_protobuf.py +++ b/service/pixelated/support/ext_protobuf.py @@ -29,8 +29,7 @@ if _platform == 'darwin': func(*args, **kwargs) pass except Exception as e: - if e.strerror == 'Socket is not connected': - pass + pass return wrapper |