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

Cope with new member variables in RepositoryFormat.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
from bzrlib.plugins.git.repository import (
48
48
    LocalGitRepository, 
49
49
    GitRepository, 
50
 
    GitFormat,
 
50
    GitRepositoryFormat,
51
51
    )
52
52
from bzrlib.plugins.git.remote import (
53
53
    RemoteGitRepository,
221
221
 
222
222
class InterGitNonGitRepository(InterRepository):
223
223
 
224
 
    _matching_repo_format = GitFormat()
 
224
    _matching_repo_format = GitRepositoryFormat()
225
225
 
226
226
    @staticmethod
227
227
    def _get_repo_format_to_test():
296
296
 
297
297
class InterGitRepository(InterRepository):
298
298
 
299
 
    _matching_repo_format = GitFormat()
 
299
    _matching_repo_format = GitRepositoryFormat()
300
300
 
301
301
    @staticmethod
302
302
    def _get_repo_format_to_test():