mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-20 13:21:28 +00:00
syncpackage: Catch user abort.
This commit is contained in:
parent
578273e517
commit
fdd01746fe
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,9 +1,13 @@
|
|||||||
ubuntu-dev-tools (0.134) UNRELEASED; urgency=low
|
ubuntu-dev-tools (0.134) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
[ Stefano Rivera ]
|
||||||
* mk-sbuild: Correct typo in variable name. Thanks Laurent Declercq.
|
* mk-sbuild: Correct typo in variable name. Thanks Laurent Declercq.
|
||||||
(Closes: #645917)
|
(Closes: #645917)
|
||||||
|
|
||||||
-- Stefano Rivera <stefanor@debian.org> Wed, 19 Oct 2011 22:38:57 +0200
|
[ Benjamin Drung ]
|
||||||
|
* syncpackage: Catch user abort.
|
||||||
|
|
||||||
|
-- Benjamin Drung <bdrung@debian.org> Sat, 22 Oct 2011 23:09:56 +0200
|
||||||
|
|
||||||
ubuntu-dev-tools (0.133) unstable; urgency=low
|
ubuntu-dev-tools (0.133) unstable; urgency=low
|
||||||
|
|
||||||
|
@ -651,4 +651,7 @@ def main():
|
|||||||
options.keyid, options.simulate, options.force)
|
options.keyid, options.simulate, options.force)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
try:
|
||||||
|
main()
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
Logger.normal('User abort.')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user