소스 검색

Fix tests.

Jelmer Vernooij 6 년 전
부모
커밋
afe4d2e27a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      dulwich/repo.py

+ 1 - 1
dulwich/repo.py

@@ -130,7 +130,7 @@ def _get_default_identity():
         fullname = None
     else:
         try:
-            fullname = pwd.getpwnam(username).pw_gecos.split(',')[0]
+            fullname = pwd.getpwnam(username).pw_gecos.split(',')[0].decode('utf-8')
         except KeyError:
             fullname = None
     if not fullname: