If stgit.autosign configuration is set, allow the automatic signing of the imported patches, similar to the 'new' command. Signed-off-by: Catalin Marinas <catalin.marinas@xxxxxxxxx> --- stgit/commands/imprt.py | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/stgit/commands/imprt.py b/stgit/commands/imprt.py index de77635..0f78490 100644 --- a/stgit/commands/imprt.py +++ b/stgit/commands/imprt.py @@ -141,6 +141,10 @@ def __create_patch(filename, message, author_name, author_email, if options.authdate: author_date = options.authdate + sign_str = options.sign_str + if not options.sign_str: + sign_str = config.get('stgit.autosign') + crt_series.new_patch(patch, message = message, can_edit = False, author_name = author_name, author_email = author_email, @@ -164,8 +168,7 @@ def __create_patch(filename, message, author_name, author_email, crt_series.refresh_patch(edit = options.edit, show_patch = options.showdiff, author_date = author_date, - sign_str = options.sign_str, - backup = False) + sign_str = sign_str, backup = False) out.done() def __mkpatchname(name, suffix): -- 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