changeset 250 | 45ee7c4cae4f |
parent 249 | 619e775aa7f9 |
child 252 | 5eda6c542978 |
--- a/mercurial/commands.py Sat Jun 04 14:16:32 2005 -0800 +++ b/mercurial/commands.py Sat Jun 04 14:25:08 2005 -0800 @@ -571,6 +571,11 @@ u.warn("killed!\n") except KeyboardInterrupt: u.warn("interrupted!\n") + except IOError, inst: + if inst.errno == 32: + u.warn("broken pipe\n") + else: + raise except TypeError, inst: import traceback # was this an argument error?