mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
EditBugReport: Correct typo.
This commit is contained in:
parent
430fc81aab
commit
8d83b9b1de
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -10,6 +10,7 @@ ubuntu-dev-tools (0.136ubuntu1) UNRELEASED; urgency=low
|
||||
* pull-lp-source, requestbackport: Take the latest version from any
|
||||
non-backports pocket. Implemented by making lpapicache's getSourcePackage
|
||||
smarter.
|
||||
* EditBugReport: Correct typo.
|
||||
|
||||
-- Stefano Rivera <stefanor@debian.org> Mon, 21 Nov 2011 09:47:00 +0200
|
||||
|
||||
|
@ -192,7 +192,7 @@ class EditBugReport(EditFile):
|
||||
report = f.read().decode('utf-8')
|
||||
|
||||
match = self.split_re.match(report)
|
||||
title = u' '.join(match.group(1).spit(u'\n'))
|
||||
title = match.group(1).replace(u'\n', u' ')
|
||||
report = (title, match.group(2))
|
||||
os.unlink(self.filename)
|
||||
return report
|
||||
|
Loading…
x
Reference in New Issue
Block a user