From ac61fb5a4fff38a30c3bdd4fadff084112ca6d5b Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Fri, 10 Nov 2017 08:57:35 -0700 Subject: [PATCH] Make the heading line as long as the others --- scripts/jenkins_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/jenkins_script.py b/scripts/jenkins_script.py index 05c589ddd..706d808af 100755 --- a/scripts/jenkins_script.py +++ b/scripts/jenkins_script.py @@ -119,7 +119,7 @@ class JenkinsTrigger(object): Print the status information of the build triggered. """ print('Add this to your merge proposal:') - print('--------------------------------') + print('-' * 80) bzr = Popen(('bzr', 'revno'), stdout=PIPE, stderr=PIPE) raw_output, error = bzr.communicate() revno = raw_output.decode().strip()