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

Add FOSDEM roundtripping notes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
185
185
    commit = Commit()
186
186
    commit._tree = tree_sha
187
187
    for p in rev.parent_ids:
188
 
        git_p = parent_lookup(p)
189
 
        if git_p is not None:
190
 
            commit._parents.append(git_p)
 
188
        commit._parents.append(parent_lookup(p))
191
189
    commit._message = rev.message
192
190
    commit._committer = rev.committer
193
191
    if 'author' in rev.properties: