From 8e706eefd6fae7b622e5bedafa5f6a5539b612d9 Mon Sep 17 00:00:00 2001 From: Tomas Hrcka Date: Aug 18 2020 12:52:25 +0000 Subject: [PATCH 1/2] Add information about issue tracker --- diff --git a/fedscm_admin/utils.py b/fedscm_admin/utils.py index b01a060..339f768 100644 --- a/fedscm_admin/utils.py +++ b/fedscm_admin/utils.py @@ -680,6 +680,7 @@ def prompt_to_close_bad_ticket(issue_json, error='Invalid ticket body'): on the ticket before closing it :return: None """ + error_base = 'If you think this is a mistake, please open a ticket at: https://pagure.io/releng/' issue_id = issue_json['id'] issue_title = issue_json['title'].strip() issue_owner = issue_json['user']['name'] @@ -695,7 +696,7 @@ def prompt_to_close_bad_ticket(issue_json, error='Invalid ticket body'): click.echo(' Error: {0}'.format(error)) if click.confirm('Would you like to close the ticket as invalid?'): - comment_body = error + comment_body = error + error_base if click.confirm('Would you like to replace the default comment of ' '"{0}"?'.format(error)): comment_body = click.prompt('Please enter a comment') From 790714e2ae441b21bae3de5669eed8c2515d33ef Mon Sep 17 00:00:00 2001 From: Tomas Hrcka Date: Aug 19 2020 08:32:34 +0000 Subject: [PATCH 2/2] Bump release Signed-off-by: Tomas Hrcka --- diff --git a/setup.py b/setup.py index d7cfb09..a015cfe 100644 --- a/setup.py +++ b/setup.py @@ -20,5 +20,5 @@ setup( packages=['fedscm_admin'], package_dir={'fedscm_admin': 'fedscm_admin'}, url='https://pagure.io/fedscm_admin', - version='1.0.15', + version='1.0.15.1', )