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

  • Committer: Jelmer Vernooij
  • Date: 2018-05-06 11:48:54 UTC
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@jelmer.uk-20180506114854-h4qd9ojaqy8wxjsd
Move .mailmap to root.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    ancestors = graph.find_unique_ancestors(old_tip, parents)
42
42
    removed_tags = []
43
43
    for revid, tags in reverse_tags.items():
44
 
        if revid not in ancestors:
 
44
        if not revid in ancestors:
45
45
            continue
46
46
        for tag in tags:
47
47
            branch.tags.delete_tag(tag)