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

  • Committer: Jelmer Vernooij
  • Date: 2018-09-01 19:51:29 UTC
  • mfrom: (7092 work)
  • mto: This revision was merged to the branch mainline in revision 7093.
  • Revision ID: jelmer@jelmer.uk-20180901195129-lkw03xisqshepa0i
merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1078
1078
        fetch_tags = c.get('branch.fetch_tags')
1079
1079
 
1080
1080
        if stop_revision is None:
1081
 
            refs = interrepo.fetch(branches=["HEAD"], include_tags=fetch_tags)
 
1081
            refs = interrepo.fetch(branches=[b"HEAD"], include_tags=fetch_tags)
1082
1082
            try:
1083
 
                head = refs["HEAD"]
 
1083
                head = refs[b"HEAD"]
1084
1084
            except KeyError:
1085
1085
                stop_revision = revision.NULL_REVISION
1086
1086
            else: