mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 23:51:08 +00:00
Merge branch 'lp-1193941' of git+ssh://git.launchpad.net/~logan/ubuntu-dev-tools
MR: https://code.launchpad.net/~logan/ubuntu-dev-tools/+git/ubuntu-dev-tools/+merge/395616 Signed-off-by: Mattia Rizzolo <mattia@debian.org>
This commit is contained in:
commit
c5b5d554bc
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -9,6 +9,11 @@ ubuntu-dev-tools (0.178) UNRELEASED; urgency=medium
|
||||
[ You-Sheng Yang ]
|
||||
* Add a dependency on tzdata, used by mk-sbuild.
|
||||
|
||||
[ Logan Rosen ]
|
||||
* import-bug-from-debian:
|
||||
+ Limit bug description length to 50k chars to support Launchpad's limits.
|
||||
LP: #1193941
|
||||
|
||||
-- Mattia Rizzolo <mattia@debian.org> Tue, 22 Dec 2020 17:50:52 +0100
|
||||
|
||||
ubuntu-dev-tools (0.177) unstable; urgency=medium
|
||||
|
@ -117,6 +117,8 @@ def main():
|
||||
|
||||
description = ('Imported from Debian bug http://bugs.debian.org/%d:\n\n%s' %
|
||||
(bug_num, summary))
|
||||
# LP limits descriptions to 50K chars
|
||||
description = (description[:49994] + ' [...]') if len(description) > 50000 else description
|
||||
|
||||
Logger.debug('Target: %s' % target)
|
||||
Logger.debug('Subject: %s' % subject)
|
||||
|
Loading…
x
Reference in New Issue
Block a user