From fa3f66e9cd4a7e0f019f226c37e4ab377269abc3 Mon Sep 17 00:00:00 2001 From: Paulius Zaleckas Date: Sun, 21 Nov 2010 17:57:06 +0200 Subject: [PATCH] StGit: export: fix base commit reporting in series file This bug was introduced in 3f19450c426970b78b19c522a82df1a962da5761 It should report the commit stg stack is based on, but not the last patch in stack. Signed-off-by: Paulius Zaleckas Signed-off-by: Catalin Marinas --- stgit/commands/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stgit/commands/export.py b/stgit/commands/export.py index 4285612..a661a7d 100644 --- a/stgit/commands/export.py +++ b/stgit/commands/export.py @@ -115,7 +115,7 @@ def func(parser, options, args): # note the base commit for this series if not options.stdout: - base_commit = stack.patches.get(patches[0]).commit.sha1 + base_commit = stack.base.sha1 print >> series, '# This series applies on GIT commit %s' % base_commit patch_no = 1; -- 2.11.0