mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-04-19 22:31:07 +00:00
* ubuntutools/config.py: properly handle name being None.
This commit is contained in:
parent
22a7f51a9a
commit
79abf8a50f
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -1,7 +1,8 @@
|
||||
ubuntu-dev-tools (0.149) UNRELEASED; urgency=low
|
||||
|
||||
[ Marc Deslauriers ]
|
||||
* mk-sbuild: allow specifying the schroot profile.
|
||||
* mk-sbuild: allow specifying the schroot profile.
|
||||
* ubuntutools/config.py: properly handle name being None.
|
||||
|
||||
[ Loïc Minier ]
|
||||
* ubuntutools.config: decode developer names with the current locale's
|
||||
@ -15,7 +16,7 @@ ubuntu-dev-tools (0.149) UNRELEASED; urgency=low
|
||||
librarian (as opposed to the login page from a private PPA).
|
||||
(LP: #1106429)
|
||||
|
||||
-- Evan Broder <evan@stripe.com> Tue, 09 Jul 2013 17:49:21 -0700
|
||||
-- Marc Deslauriers <marc.deslauriers@ubuntu.com> Tue, 13 Aug 2013 17:00:26 -0400
|
||||
|
||||
ubuntu-dev-tools (0.148) unstable; urgency=low
|
||||
|
||||
|
@ -179,5 +179,6 @@ def ubu_email(name=None, email=None, export=True):
|
||||
encoding = locale.getdefaultlocale()[1]
|
||||
if not encoding:
|
||||
encoding = 'utf-8'
|
||||
name = name.decode(encoding)
|
||||
if name:
|
||||
name = name.decode(encoding)
|
||||
return name, email
|
||||
|
Loading…
x
Reference in New Issue
Block a user