Re: Signing by StGIT broken
From: Pavel Roskin <hidden>
Date: 2016-06-15 22:44:04
Subsystem:
the rest · Maintainer:
Linus Torvalds
On Thu, 2008-01-10 at 08:42 +0100, Karl Hasselström wrote:
On 2008-01-09 21:53:16 -0500, Pavel Roskin wrote:quoted
"stg edit --sign" is not working anymore. It was working in version 0.14.Thanks for the report and the detailed analysis. I'll write a test and fix it (but not quite immediately, so feel free to beat me to it).
The fix below appears to work (thus making it a self-signing patch :)) but with my modest Python experience it absolutely needs to be reviewed. I don't even know how to wrap the long line without making it look misleading. No testsuite fixes, sorry. But the existing testsuite passes. Fix "stg edit --sign" Signed-off-by: Pavel Roskin <redacted> --- stgit/commands/edit.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/stgit/commands/edit.py b/stgit/commands/edit.py
index b9699d5..650d5a3 100644
--- a/stgit/commands/edit.py
+++ b/stgit/commands/edit.py@@ -90,7 +90,10 @@ def __update_patch(pname, text, options): bottom = patch.get_bottom() top = patch.get_top() - message, author_name, author_email, author_date, diff = parse_patch(text) + if text: + message, author_name, author_email, author_date, diff = parse_patch(text) + else: + message = author_name = author_email = author_date = diff = None out.start('Updating patch "%s"' % pname)
--
Regards,
Pavel Roskin