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

  • Committer: Martin Pool
  • Date: 2005-05-09 03:51:55 UTC
  • Revision ID: mbp@sourcefrog.net-20050509035155-1c02874f84fc2997
- bzr status only needs a read-lock

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
    aliases = ['st', 'stat']
125
125
    
126
126
    def run(self, all=False, file_list=None):
127
 
        #import bzrlib.status
128
 
        #bzrlib.status.tree_status(Branch('.'))
129
 
        Branch('.').show_status(show_all=all, file_list=file_list)
 
127
        b = Branch('.', lock_mode='r')
 
128
        b.show_status(show_all=all, file_list=file_list)
130
129
 
131
130
 
132
131
class cmd_cat_revision(Command):