diff options
Diffstat (limited to 'skype/skyped.py')
-rw-r--r-- | skype/skyped.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/skype/skyped.py b/skype/skyped.py index e46d4ec3..eab69a32 100644 --- a/skype/skyped.py +++ b/skype/skyped.py @@ -57,7 +57,8 @@ def input_handler(fd, io_condition): else: try: input = fd.recv(1024) - except SSL.SysCallError: + except Exception, s: + dprint("Warning, receiving 1024 bytes failed (%s)." % s) return True for i in input.split("\n"): skype.send(i.strip()) |