/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/osutils.py

  • Committer: John Arbash Meinel
  • Date: 2010-02-10 22:52:04 UTC
  • mto: This revision was merged to the branch mainline in revision 5034.
  • Revision ID: john@arbash-meinel.com-20100210225204-gkpyib953g2svoke
Fix bug #303275, return a kind marker for sockets and fifos.

file_kind() supports returning 'socket' or 'fifo', so kind_marker() should support them
as well. We could just return nothing, but we may as well just match 'ls -F'. No real
harm in doing so.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2009 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
172
172
    _directory_kind: "/",
173
173
    "symlink": "@",
174
174
    'tree-reference': '+',
 
175
    "socket": "=",
 
176
    "fifo": "|",
175
177
}
176
178
 
177
179