/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/plugins/weave_fmt/repository.py

  • Committer: Jelmer Vernooij
  • Date: 2017-02-05 16:49:28 UTC
  • mto: (6621.2.1 py3)
  • mto: This revision was merged to the branch mainline in revision 6624.
  • Revision ID: jelmer@jelmer.uk-20170205164928-nmcybzip5kdhiwon
Use 2to3 set_literal fixer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
716
716
            if not relpath.endswith('.sig'):
717
717
                relpaths.add(relpath)
718
718
        paths = list(relpaths)
719
 
        return set([self._mapper.unmap(path) for path in paths])
 
719
        return {self._mapper.unmap(path) for path in paths}
720
720
 
721
721
 
722
722
class SignatureTextStore(TextVersionedFiles):
757
757
                continue
758
758
            relpaths.add(relpath[:-4])
759
759
        paths = list(relpaths)
760
 
        return set([self._mapper.unmap(path) for path in paths])
 
760
        return {self._mapper.unmap(path) for path in paths}
761
761
 
762
762
 
763
763
class InterWeaveRepo(InterSameDataRepository):