Browse Source

Fix unicode issue.

Jelmer Vernooij 6 năm trước cách đây
mục cha
commit
4fff5875d0
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      dulwich/repo.py

+ 1 - 1
dulwich/repo.py

@@ -134,7 +134,7 @@ def _get_default_identity():
         except KeyError:
             fullname = None
         else:
-            fullname = gecos.split(',')[0].decode('utf-8')
+            fullname = gecos.split(',')[0]
     if not fullname:
         fullname = username
     email = os.environ.get('EMAIL')