~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-03-10 21:21:10 UTC
  • mfrom: (1551.10.30 Aaron's mergeable stuff)
  • Revision ID: pqm@pqm.ubuntu.com-20070310212110-7853e75061cf66d6
Add + kind marker for tree references

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
    "file": "",
150
150
    _directory_kind: "/",
151
151
    "symlink": "@",
 
152
    'tree-reference': '+',
152
153
}
 
154
 
 
155
 
153
156
def kind_marker(kind):
154
157
    try:
155
158
        return _kind_marker_map[kind]