mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
import-bug-from-debian: Show error messages instead of having the import errors for recommended packages (Closes: #613101, LP: #693813).
This commit is contained in:
parent
8c0e535b29
commit
bae108a7ae
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,9 +1,10 @@
|
||||
ubuntu-dev-tools (0.117) UNRELEASED; urgency=low
|
||||
|
||||
* dgetlp, suspicious-source: Show error messages instead of having the import
|
||||
errors for recommended packages (Closes: #613101, LP: #693813).
|
||||
* dgetlp, import-bug-from-debian, suspicious-source:
|
||||
Show error messages instead of having the import errors for
|
||||
recommended packages (Closes: #613101, LP: #693813).
|
||||
|
||||
-- Benjamin Drung <bdrung@debian.org> Sat, 12 Feb 2011 23:07:16 +0100
|
||||
-- Benjamin Drung <bdrung@debian.org> Sat, 12 Feb 2011 23:12:22 +0100
|
||||
|
||||
ubuntu-dev-tools (0.116) unstable; urgency=low
|
||||
|
||||
|
@ -27,7 +27,12 @@ import re
|
||||
import sys
|
||||
import subprocess
|
||||
|
||||
import SOAPpy
|
||||
try:
|
||||
import SOAPpy
|
||||
except ImportError:
|
||||
print >> sys.stderr, ("Please install 'python-soappy' in order to use "
|
||||
"this utility.")
|
||||
sys.exit(1)
|
||||
|
||||
from ubuntutools.config import UDTConfig
|
||||
from ubuntutools.lp.libsupport import get_launchpad
|
||||
|
Loading…
x
Reference in New Issue
Block a user