/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

Print proper error about not supporting push.

Show diffs side-by-side

added added

removed removed

Lines of Context:
220
220
 
221
221
 
222
222
class InterGitNonGitRepository(InterRepository):
 
223
    """InterRepository that copies revisions from a Git into a non-Git 
 
224
    repository."""
223
225
 
224
226
    _matching_repo_format = GitRepositoryFormat()
225
227
 
295
297
 
296
298
 
297
299
class InterGitRepository(InterRepository):
 
300
    """InterRepository that copies between Git repositories."""
298
301
 
299
302
    _matching_repo_format = GitRepositoryFormat()
300
303