/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 breezy/plugins/git/tree.py

  • Committer: Jelmer Vernooij
  • Date: 2018-06-21 08:03:55 UTC
  • mto: This revision was merged to the branch mainline in revision 6991.
  • Revision ID: jelmer@jelmer.uk-20180621080355-0h154a54849668fr
Use set literal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
315
315
 
316
316
    def all_versioned_paths(self):
317
317
        ret = set()
318
 
        todo = set([(self.store, '', self.tree)])
 
318
        todo = {(self.store, '', self.tree)}
319
319
        while todo:
320
320
            (store, path, tree_id) = todo.pop()
321
321
            if tree_id is None: