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
-
Committer:
Martin Pool
-
Date:
2005-05-09 08:47:06 UTC
-
Revision ID:
mbp@sourcefrog.net-20050509084706-19ca82cc007ab3f8
- RemoteBranch.__str__ and repr
- Better code for locating root of remote branch
Show diffs side-by-side
added
removed
966
966
except Exception, e:
968
if isinstance(e, IOError) and e.errno == errno.EPIPE:
968
if (isinstance(e, IOError)
969
and hasattr(e, 'errno')
970
and e.errno == errno.EPIPE):
970
972
msg = 'broken pipe'