/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/xml8.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:
78
78
    # This format supports the altered-by hack that reads file ids directly out
79
79
    # of the versionedfile, without doing XML parsing.
80
80
 
81
 
    supported_kinds = set(['file', 'directory', 'symlink'])
 
81
    supported_kinds = {'file', 'directory', 'symlink'}
82
82
    format_num = '8'
83
83
    revision_format_num = None
84
84