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

  • Committer: Jelmer Vernooij
  • Date: 2017-02-05 22:51:57 UTC
  • mto: (6621.2.1 py3)
  • mto: This revision was merged to the branch mainline in revision 6624.
  • Revision ID: jelmer@jelmer.uk-20170205225157-jdk9ppega9c3my86
Run 2to3 idioms fixer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
440
440
 
441
441
    def active_shelves(self):
442
442
        """Return a list of shelved changes."""
443
 
        active = self.get_shelf_ids(self.transport.list_dir('.'))
444
 
        active.sort()
 
443
        active = sorted(self.get_shelf_ids(self.transport.list_dir('.')))
445
444
        return active
446
445
 
447
446
    def last_shelf(self):