From: Mathias Klette Date: Tue, 28 May 2013 15:28:05 +0000 (+0200) Subject: debian_build: fix: correct format() usage X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=0410400da6375d371645813d385c1ac0a2f2d60f;p=profitbricks%2Fjenkins-build-scripts.git debian_build: fix: correct format() usage --- diff --git a/debian_build.py b/debian_build.py index b4da0af..484488d 100755 --- a/debian_build.py +++ b/debian_build.py @@ -271,11 +271,13 @@ if __name__ == '__main__': suite=pb_suite, )) if do_triggers: - logger.debug('Triggers found: {tags}'.format( + logger.debug('Triggers found: {tags}.'.format( tags=', '.join(commit_triggers), )) if do_tagging: - logger.debug('Tag to create: {tag}'.format(new_tag)) + logger.debug('Tag to create: {tag}'.format( + tag=new_tag, + )) logger.debug('Upload configuration:\n{config}'.format( config=pformat(dput_obj.contents), ))