~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to show_paths.py

  • Committer: Aaron Bentley
  • Date: 2007-08-14 14:14:46 UTC
  • Revision ID: abentley@panoramicfeedback.com-20070814141446-441z1hsl506rs1wx
Hide show-paths command

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
class cmd_show_paths(Command):
49
49
    """Show paths used by bzr itself and for current branch.
50
50
 
 
51
    The standard "bzr info" command now includes this functionality.
 
52
 
51
53
    If you run this command from branch you'll see
52
54
    saved path locations for current branch:
53
55
 
63
65
                    ]
64
66
    takes_args = ['branch?']
65
67
 
 
68
    hidden = True
 
69
 
 
70
    _see_also = ['info']
 
71
 
66
72
    def run(self, system=False, branch=u'.'):
67
73
        import sys
68
74