From: Bryan Larsen Date: Wed, 13 Jul 2005 21:36:26 +0000 (+0100) Subject: Using the --message option with the new command fails. Fix it. X-Git-Tag: v0.14.3~748 X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/4de718c3e7654165bb4819003a267f2105ce8b1e?ds=sidebyside Using the --message option with the new command fails. Fix it. Signed-off-by: Bryan Larsen --- diff --git a/stgit/stack.py b/stgit/stack.py index 851f998..0e6bdb3 100644 --- a/stgit/stack.py +++ b/stgit/stack.py @@ -384,6 +384,8 @@ class Series: descr = edit_file(None, \ 'Please enter the description for patch "%s" ' \ 'above.' % name) + else: + descr = message head = git.get_head()