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/osutils.py
-
Committer:
Martin Pool
-
Date:
2005-05-12 02:14:35 UTC
-
Revision ID:
mbp@sourcefrog.net-20050512021435-87fa19f051842647
- new helper function kind_marker()
Show diffs side-by-side
added
removed
56
56
elif S_ISLNK(mode):
59
raise BzrError("can't handle file kind with mode %o of %r" % (mode, f))
59
raise BzrError("can't handle file kind with mode %o of %r" % (mode, f))
62
def kind_marker(kind):
65
elif kind == 'directory':
67
elif kind == 'symlink':
70
raise BzrError('invalid file kind %r' % kind)