From 0410400da6375d371645813d385c1ac0a2f2d60f Mon Sep 17 00:00:00 2001 From: Mathias Klette Date: Tue, 28 May 2013 17:28:05 +0200 Subject: [PATCH] debian_build: fix: correct format() usage --- debian_build.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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), )) -- 2.39.5