mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
lp-set-dup: Add missing % needed for string substitution.
This commit is contained in:
parent
c6a040f85f
commit
4ba398de53
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -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 <geser@ubuntu.com> Tue, 09 Jun 2009 10:31:03 +0200
|
||||
|
||||
ubuntu-dev-tools (0.74) karmic; urgency=low
|
||||
|
@ -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]]
|
||||
|
Loading…
x
Reference in New Issue
Block a user