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

Cope with API changes in Dulwich.

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
                gitid = newgitidmap[revid]
168
168
            else:
169
169
                gitid, _ = self.mapping.revision_id_bzr_to_foreign(revid)
170
 
            self.target._git.set_ref(name, gitid)
 
170
            self.target._git.refs[name] = gitid
171
171
            new_refs[name] = gitid
172
172
        return revidmap, new_refs
173
173