lp-set-dup: Add missing % needed for string substitution.

This commit is contained in:
Luke Yelavich 2009-06-12 13:08:19 +10:00
parent c6a040f85f
commit 4ba398de53
2 changed files with 4 additions and 1 deletions

3
debian/changelog vendored
View File

@ -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 * Get rid of the last remaining use of subprocess.Popen(shell=True) in
404main. 404main.
[ Luke Yelavich ]
* lp-set-dup: Add missing % needed for string substitution.
-- Michael Bienia <geser@ubuntu.com> Tue, 09 Jun 2009 10:31:03 +0200 -- Michael Bienia <geser@ubuntu.com> Tue, 09 Jun 2009 10:31:03 +0200
ubuntu-dev-tools (0.74) karmic; urgency=low ubuntu-dev-tools (0.74) karmic; urgency=low

View File

@ -53,7 +53,7 @@ if __name__ == '__main__':
except IOError: except IOError:
suggestion = "you might want to \"manage-credentials create --consumer ubuntu-dev-tools --level 2\"" suggestion = "you might want to \"manage-credentials create --consumer ubuntu-dev-tools --level 2\""
if launchpad is None: 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 # check that the new main bug isn't a duplicate
new_main_bug = launchpad.bugs[args[0]] new_main_bug = launchpad.bugs[args[0]]