mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-06-09 06:51:31 +00:00
pbuilder-dist: Fix yes/no for unknown distribution (LP: #1311884).
This commit is contained in:
parent
383cb8afef
commit
bd226fc4e6
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
ubuntu-dev-tools (0.154) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* pbuilder-dist: Fix yes/no for unknown distribution (LP: #1311884).
|
||||||
|
|
||||||
|
-- Logan Rosen <logan@ubuntu.com> Wed, 23 Apr 2014 17:24:12 -0400
|
||||||
|
|
||||||
ubuntu-dev-tools (0.153) unstable; urgency=medium
|
ubuntu-dev-tools (0.153) unstable; urgency=medium
|
||||||
|
|
||||||
[ Stefano Rivera ]
|
[ Stefano Rivera ]
|
||||||
|
@ -147,7 +147,7 @@ class PbuilderDist(object):
|
|||||||
question = ('Warning: Unknown distribution "%s". '
|
question = ('Warning: Unknown distribution "%s". '
|
||||||
'Do you want to continue' % distro)
|
'Do you want to continue' % distro)
|
||||||
answer = YesNoQuestion().ask(question, 'no')
|
answer = YesNoQuestion().ask(question, 'no')
|
||||||
if answer == 'yes':
|
if answer == 'no':
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
else:
|
else:
|
||||||
Logger.error('Please install package "debootstrap".')
|
Logger.error('Please install package "debootstrap".')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user