From 71e20f0959c81c96e7bd6a459af5d0b7e0824772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 26 Dec 2018 10:25:39 +0100 Subject: [PATCH] redmine: display closed issues in normal verbosity status --- scrutiny/projects/management/commands/update-redmine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrutiny/projects/management/commands/update-redmine.py b/scrutiny/projects/management/commands/update-redmine.py index fb34899..b13ec25 100644 --- a/scrutiny/projects/management/commands/update-redmine.py +++ b/scrutiny/projects/management/commands/update-redmine.py @@ -42,7 +42,7 @@ class Command(BaseCommand): platforms_ok = [x.rsplit(' / ', 1)[0] for x in deployment_status['platforms'].keys() if deployment_status['platforms'][x]['status'] == 'ok'] if settings.REDMINE_REFERENCE_PLATFORM in platforms_ok: - if verbosity > 1: + if verbosity > 0: print('%s - https://dev.entrouvert.org/issues/%s' % (module.redmine_project, issue.id)) issue.status_id = DEPLOYED_ID issue.save()