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 <paulius.zaleckas@xxxxxxxxx> --- stgit/commands/export.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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; -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html