瀏覽代碼

Merge "Accept all UTF-8 committer names"

Conley Owens 12 年之前
父節點
當前提交
e76efdd7b3
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      project.py

+ 1 - 1
project.py

@@ -2274,7 +2274,7 @@ class Project(object):
                          p.stderr))
         r = p.stdout
         try:
-          r = r.decode()
+          r = r.decode('utf-8')
         except AttributeError:
           pass
         if r.endswith('\n') and r.index('\n') == len(r) - 1: