From c92a4e471e78404c05422204dcf17fe6da6d7294 Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Wed, 4 Feb 2009 17:25:38 -0700 Subject: [PATCH] filter-repo: fix parsing bug in Reset object creation Signed-off-by: Elijah Newren --- git-filter-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-filter-repo b/git-filter-repo index 6a319f9..dc7f064 100755 --- a/git-filter-repo +++ b/git-filter-repo @@ -189,7 +189,7 @@ class FastExportParser(object): ref = t[1] from_ref = None if len(t) > 2: - from_ref = t[4] + from_ref = t[3] reset = Reset(ref, from_ref) # Call any user callback to allow them to modify the reset