From 897e0132afa27c534625bb204374c25651d22e57 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 25 Apr 2006 12:10:11 -0400 Subject: [PATCH] Don't print out remove errors --- chat/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chat/chat.py b/chat/chat.py index 40973f02..f4fab639 100755 --- a/chat/chat.py +++ b/chat/chat.py @@ -79,7 +79,7 @@ class BuddyChat(Chat): success = True try: peer.message(text) - except socket.error, e: + except (socket.error, xmlrpclib.Fault), e: msg = str(e) success = False self._local_message(success, msg)