/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

Merge from bzr.dev, resolving the worst of the semantic conflicts, but there's
still a little bit of breakage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
627
627
                raise
628
628
            if e.errno != errno.EPIPE:
629
629
                # Win32 raises IOError with errno=0 on a broken pipe
630
 
                if sys.platform != 'win32' or e.errno != 0:
 
630
                if sys.platform != 'win32' or (e.errno not in (0, errno.EINVAL)):
631
631
                    raise
632
632
            pass
633
633
        except KeyboardInterrupt: