/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/git/git_remote_helper.py

  • Committer: Jelmer Vernooij
  • Date: 2021-01-10 00:25:52 UTC
  • mfrom: (7490.40.131 work)
  • mto: (7526.3.1 work)
  • mto: This revision was merged to the branch mainline in revision 7532.
  • Revision ID: jelmer@jelmer.uk-20210110002552-wnvuqtqin7uhjv3v
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python3
2
1
# vim: expandtab
3
2
 
4
3
# Copyright (C) 2011-2018 Jelmer Vernooij <jelmer@jelmer.uk>
78
77
        lossy = False
79
78
    else:
80
79
        lossy = True
81
 
    inter.fetch_objects(revs, lossy=lossy)
 
80
    inter.fetch_revs(revs, lossy=lossy)
82
81
    outf.write(b"\n")
83
82
 
84
83