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

  • Committer: Jelmer Vernooij
  • Date: 2018-07-11 21:04:18 UTC
  • mto: This revision was merged to the branch mainline in revision 7036.
  • Revision ID: jelmer@jelmer.uk-20180711210418-c9uib4qc0b51vmrt
review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
        else:
205
205
            base[k] = v
206
206
            peeled[k] = v
207
 
    all_keys = set()
208
 
    all_keys.update(base.keys())
209
 
    all_keys.update(peeled.keys())
 
207
    all_keys = set().union(base.keys(), peeled.keys())
210
208
    for n in all_keys:
211
209
        try:
212
210
            tag_name = ref_to_tag_name(n)