mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 23:51:08 +00:00
* pull-lp-source:
- Support -d (LP: #681699) - str() exceptions before passing to Logger (LP: #695523)
This commit is contained in:
parent
5553c11ddd
commit
51fe0a4db8
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -27,7 +27,9 @@ ubuntu-dev-tools (0.109) UNRELEASED; urgency=low
|
|||||||
* edit-patch: Don't let cat error through if debian/source/format doesn't
|
* edit-patch: Don't let cat error through if debian/source/format doesn't
|
||||||
exist.
|
exist.
|
||||||
* pull-debian-debdiff: Rewrite in Python, and use snapshot.debian.org.
|
* pull-debian-debdiff: Rewrite in Python, and use snapshot.debian.org.
|
||||||
* pull-lp-source: Support -d (LP: #681699)
|
* pull-lp-source:
|
||||||
|
- Support -d (LP: #681699)
|
||||||
|
- str() exceptions before passing to Logger (LP: #695523)
|
||||||
* suspicious-source: Whitelist Python source code.
|
* suspicious-source: Whitelist Python source code.
|
||||||
|
|
||||||
[ Michael Bienia ]
|
[ Michael Bienia ]
|
||||||
@ -52,7 +54,7 @@ ubuntu-dev-tools (0.109) UNRELEASED; urgency=low
|
|||||||
* add "add-patch" that provides the non-interactive version of
|
* add "add-patch" that provides the non-interactive version of
|
||||||
edit-patch
|
edit-patch
|
||||||
|
|
||||||
-- Benjamin Drung <bdrung@ubuntu.com> Mon, 27 Dec 2010 22:38:34 +0100
|
-- Stefano Rivera <stefanor@ubuntu.com> Thu, 30 Dec 2010 17:13:05 +0200
|
||||||
|
|
||||||
ubuntu-dev-tools (0.108) experimental; urgency=low
|
ubuntu-dev-tools (0.108) experimental; urgency=low
|
||||||
|
|
||||||
|
@ -71,16 +71,16 @@ def main():
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
(release, pocket) = split_release_pocket(release)
|
(release, pocket) = split_release_pocket(release)
|
||||||
except PocketDoesNotExistError, error:
|
except PocketDoesNotExistError, e:
|
||||||
Logger.error(error)
|
Logger.error(str(e))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
spph = Distribution('ubuntu').getArchive().getSourcePackage(package,
|
spph = Distribution('ubuntu').getArchive().getSourcePackage(package,
|
||||||
release,
|
release,
|
||||||
pocket)
|
pocket)
|
||||||
except (SeriesNotFoundException, PackageNotFoundException), error:
|
except (SeriesNotFoundException, PackageNotFoundException), e:
|
||||||
Logger.error(error)
|
Logger.error(str(e))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
srcpkg = UbuntuSourcePackage(package, spph.getVersion(),
|
srcpkg = UbuntuSourcePackage(package, spph.getVersion(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user