mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 23:51:08 +00:00
* requestsync: Set importance to wishlist and strip some more whitespace
from components so the URL for the Debian changelog doesn't break.
This commit is contained in:
parent
916aa6451b
commit
2d00e3e45b
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -9,7 +9,12 @@ ubuntu-dev-tools (0.24) UNRELEASED; urgency=low
|
||||
[ Cesare Tirabassi ]
|
||||
* Add man page for check-symbols (Thanks to Albert Damen - LP: #174123).
|
||||
|
||||
-- Cesare Tirabassi <norsetto@ubuntu.com> Mon, 17 Dec 2007 00:18:09 +0100
|
||||
[ Michael Bienia ]
|
||||
* requestsync:
|
||||
+ Set importance to wishlist.
|
||||
+ Strip some more whitespace.
|
||||
|
||||
-- Michael Bienia <geser@ubuntu.com> Sun, 30 Dec 2007 17:05:23 +0100
|
||||
|
||||
ubuntu-dev-tools (0.23) hardy; urgency=low
|
||||
|
||||
|
@ -42,7 +42,7 @@ def cur_deb_version(sourcepkg):
|
||||
print "%s doesn't appear to exist in Debian." % sourcepkg
|
||||
sys.exit(1)
|
||||
|
||||
return out.split('|')[1].rstrip('[]''').lstrip()
|
||||
return out.split('|')[1].rstrip('[]''').strip()
|
||||
|
||||
sys.exit(1)
|
||||
|
||||
@ -76,7 +76,7 @@ def debian_component(sourcepkg):
|
||||
raw_comp = out.split('|')[2].split('/')
|
||||
component = 'main'
|
||||
if len(raw_comp) == 2:
|
||||
component = raw_comp[1]
|
||||
component = raw_comp[1].strip()
|
||||
return component
|
||||
|
||||
def usage():
|
||||
@ -136,6 +136,7 @@ if newsource:
|
||||
|
||||
report = ''' affects ubuntu%s
|
||||
status %s
|
||||
importance wishlist
|
||||
subscribe %s
|
||||
|
||||
Please sync %s %s (%s) from Debian unstable (%s).
|
||||
|
Loading…
x
Reference in New Issue
Block a user