From 4ba398de538f40ad333a75cef5472f47c655447f Mon Sep 17 00:00:00 2001 From: Luke Yelavich Date: Fri, 12 Jun 2009 13:08:19 +1000 Subject: [PATCH] lp-set-dup: Add missing % needed for string substitution. --- debian/changelog | 3 +++ lp-set-dup | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 8c44151..faf14a7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -41,6 +41,9 @@ ubuntu-dev-tools (0.75) UNRELEASED; urgency=low * Get rid of the last remaining use of subprocess.Popen(shell=True) in 404main. + [ Luke Yelavich ] + * lp-set-dup: Add missing % needed for string substitution. + -- Michael Bienia Tue, 09 Jun 2009 10:31:03 +0200 ubuntu-dev-tools (0.74) karmic; urgency=low diff --git a/lp-set-dup b/lp-set-dup index c8ac0d5..50ace11 100755 --- a/lp-set-dup +++ b/lp-set-dup @@ -53,7 +53,7 @@ if __name__ == '__main__': except IOError: suggestion = "you might want to \"manage-credentials create --consumer ubuntu-dev-tools --level 2\"" if launchpad is None: - die("Couldn't setup Launchpad for the ubuntu-dev-tools consumer; %s" (suggestion, )) + die("Couldn't setup Launchpad for the ubuntu-dev-tools consumer; %s" % (suggestion, )) # check that the new main bug isn't a duplicate new_main_bug = launchpad.bugs[args[0]]