1 Star 0 Fork 38

src-oepkgs-oE-rv/criu

forked from src-openEuler/criu 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0001-Fix-crit-encode-TypeError.patch 717 Bytes
一键复制 编辑 原始数据 按行查看 历史
river 提交于 2021-04-13 14:20 . criu: add backport patch set
From 22bd1e20cbd3c26d2e5dba76e3b0a95ff0a2e154 Mon Sep 17 00:00:00 2001
From: lingsheng <[email protected]>
Date: Tue, 22 Sep 2020 14:36:55 +0800
Subject: [PATCH 1/6] Fix crit encode TypeError
---
lib/py/cli.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/lib/py/cli.py b/lib/py/cli.py
index da34302..966dd4e 100755
--- a/lib/py/cli.py
+++ b/lib/py/cli.py
@@ -16,7 +16,10 @@ def inf(opts):
def outf(opts):
if opts['out']:
- return open(opts['out'], 'w+')
+ if getattr(opts['func'], '__name__') == 'encode':
+ return open(opts['out'], 'wb+')
+ else:
+ return open(opts['out'], 'w+')
else:
return sys.stdout
--
1.8.3.1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-oepkgs-oe-rv/criu.git
[email protected]:src-oepkgs-oe-rv/criu.git
src-oepkgs-oe-rv
criu
criu
master

搜索帮助