mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
submittodebian: Explitictly UTF-8 encode the bug body (LP: #1005834)
This commit is contained in:
parent
4f308cdf62
commit
9f33928d38
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -22,6 +22,7 @@ ubuntu-dev-tools (0.143) UNRELEASED; urgency=low
|
|||||||
* Correct spelling mistakes in package description, thanks Logan Rosen for
|
* Correct spelling mistakes in package description, thanks Logan Rosen for
|
||||||
the patch (Closes: #678245)
|
the patch (Closes: #678245)
|
||||||
* Correct metavar for --mirror in backportpackage (LP: #999727)
|
* Correct metavar for --mirror in backportpackage (LP: #999727)
|
||||||
|
* submittodebian: Explitictly UTF-8 encode the bug body (LP: #1005834)
|
||||||
|
|
||||||
-- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> Wed, 06 Jun 2012 09:53:24 -0400
|
-- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> Wed, 06 Jun 2012 09:53:24 -0400
|
||||||
|
|
||||||
|
@ -228,7 +228,7 @@ def main():
|
|||||||
tmpdir = mkdtemp()
|
tmpdir = mkdtemp()
|
||||||
body = os.path.join(tmpdir, 'bug_body')
|
body = os.path.join(tmpdir, 'bug_body')
|
||||||
fp = open(body, 'w')
|
fp = open(body, 'w')
|
||||||
fp.write(bug_body)
|
fp.write(bug_body.encode('utf-8'))
|
||||||
fp.close()
|
fp.close()
|
||||||
|
|
||||||
restore_maintainer('debian')
|
restore_maintainer('debian')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user