From 153cfc97a9c4f01684b5da953e3761a93f2b4d05 Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Sun, 13 Mar 2016 14:53:24 -0500 Subject: [PATCH] Fix keep_revnum vs source_start_rev handling --- svn2svn/run/svnreplay.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/svn2svn/run/svnreplay.py b/svn2svn/run/svnreplay.py index f34400e..2ef10fd 100644 --- a/svn2svn/run/svnreplay.py +++ b/svn2svn/run/svnreplay.py @@ -876,8 +876,8 @@ def real_main(args): source_start_rev = int(source_start_log['revision']) ui.status("Starting at source revision %s.", source_start_rev, level=ui.VERBOSE) ui.status("", level=ui.VERBOSE) - if options.keep_revnum and source_rev > target_rev_last: - target_rev_last = keep_revnum(source_rev, target_rev_last, wc_target_tmp) + if options.keep_revnum and source_start_rev > target_rev_last: + target_rev_last = keep_revnum(source_start_rev, target_rev_last, wc_target_tmp) # For the initial commit to the target URL, export all the contents from # the source URL at the start-revision. @@ -914,7 +914,7 @@ def real_main(args): commit_count += 1 target_rev_last = target_rev if options.verify: - verify_commit(source_rev, target_rev_last) + verify_commit(source_start_rev, target_rev_last) else: # Re-build the rev_map based on any already-replayed history in target_url build_rev_map(target_url, target_rev_last, source_info) -- 2.43.0