/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: 2019-03-04 00:16:27 UTC
  • mfrom: (7293 work)
  • mto: This revision was merged to the branch mainline in revision 7318.
  • Revision ID: jelmer@jelmer.uk-20190304001627-v6u7o6pf97tukhek
Merge trunk.

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 not revid in ancestors:
 
44
        if revid not in ancestors:
45
45
            continue
46
46
        for tag in tags:
47
47
            branch.tags.delete_tag(tag)