/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: Gustav Hartvigsson
  • Date: 2021-01-11 20:19:38 UTC
  • mfrom: (7526.3.2 work)
  • Revision ID: gustav.hartvigsson@gmail.com-20210111201938-omr9wjz3qdgyxe8k
MergedĀ lp:brz

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