Changeset b5143bd in mainline for contrib/bazaar/mbprotect/__init__.py
- Timestamp:
- 2015-06-06T01:50:56Z (10 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/bazaar/mbprotect/__init__.py
r94e46c9 rb5143bd 60 60 return 61 61 62 # First permitted case is appending changesets to main branch. Look for62 # First permitted case is appending changesets to main branch. Look for 63 63 # old tip in new main branch. 64 64 for revision_id in iter_reverse_revision_history(repo, params.new_revid): 65 65 if revision_id == params.old_revid: 66 return # Found old tip 66 # Old tip found 67 return 67 68 68 69 # Another permitted case is backing out changesets. Look for new tip … … 70 71 for revision_id in iter_reverse_revision_history(repo, params.old_revid): 71 72 if revision_id == params.new_revid: 72 return # Found new tip 73 # New tip found 74 return 73 75 74 76 # Trying to do something else. Reject the change.
Note:
See TracChangeset
for help on using the changeset viewer.