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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-06-30 23:11:39 UTC
  • mfrom: (6973.12.13 python3-k)
  • Revision ID: breezy.the.bot@gmail.com-20180630231139-tf5t5khh6bu5ntpm
Fix some more tests on python3.

Merged from https://code.launchpad.net/~jelmer/brz/python3-k/+merge/348646

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
            BareLocalGitControlDirFormat,
134
134
            LocalGitControlDirFormat,
135
135
            )
136
 
        return set([BareLocalGitControlDirFormat(), LocalGitControlDirFormat()])
 
136
        return [BareLocalGitControlDirFormat(), LocalGitControlDirFormat()]
137
137
 
138
138
 
139
139
def user_agent_for_github():
203
203
    @classmethod
204
204
    def known_formats(cls):
205
205
        from .remote import RemoteGitControlDirFormat
206
 
        return set([RemoteGitControlDirFormat()])
 
206
        return [RemoteGitControlDirFormat()]
207
207
 
208
208
 
209
209
ControlDirFormat.register_prober(LocalGitProber)