浏览代码

#8600: Added UTF-8 encoding parameter to create process

Devansh Goenka 4 年之前
父节点
当前提交
ac62b77ca8
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      jupyterlab/commands.py

+ 1 - 0
jupyterlab/commands.py

@@ -87,6 +87,7 @@ class ProgressProcess(Process):
             stderr=subprocess.STDOUT,
             stdout=subprocess.PIPE,
             universal_newlines=True,
+            encoding='utf-8',
         )
         self._kill_event = kill_event or Event()