Changeset b5143bd in mainline for contrib/bazaar/mbprotect/__init__.py


Ignore:
Timestamp:
2015-06-06T01:50:56Z (9 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0453261
Parents:
94e46c9 (diff), 87a2f9b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/bazaar/mbprotect/__init__.py

    r94e46c9 rb5143bd  
    6060                return
    6161       
    62         # First permitted case is appending changesets to main branch.Look for
     62        # First permitted case is appending changesets to main branch. Look for
    6363        # old tip in new main branch.
    6464        for revision_id in iter_reverse_revision_history(repo, params.new_revid):
    6565                if revision_id == params.old_revid:
    66                         return  # Found old tip
     66                        # Old tip found
     67                        return
    6768       
    6869        # Another permitted case is backing out changesets. Look for new tip
     
    7071        for revision_id in iter_reverse_revision_history(repo, params.old_revid):
    7172                if revision_id == params.new_revid:
    72                         return  # Found new tip
     73                        # New tip found
     74                        return
    7375       
    7476        # Trying to do something else. Reject the change.
Note: See TracChangeset for help on using the changeset viewer.