10 Star 0 Fork 3

src-openEuler/icfg

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
icfg-python3.patch 892 Bytes
一键复制 编辑 原始数据 按行查看 历史
朱春意 提交于 2019-11-06 19:33 . update code
diff -up ./src/icfg.orig ./src/icfg
--- ./src/icfg.orig 2018-02-20 10:00:47.738647996 -0500
+++ ./src/icfg 2018-02-20 10:07:48.203054651 -0500
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
import os
import sys
import string
@@ -133,7 +133,7 @@ class iface(object):
def dump(self):
for i in self.config.keys():
- print i+"="+"\""+self.config[i]+"\""
+ print(i,"=","\"",self.config[i],"\"", sep="")
def removeKey(self, key):
try:
@@ -299,7 +299,7 @@ def createNewConfig(ifname, iftype):
def log(msg):
if (goptions.quiet == False):
- print msg
+ print(msg)
def main():
global goptions
@@ -427,7 +427,7 @@ def main():
if (goptions.listslaves == True):
try:
for slave in ifdev.slaves:
- print slave.name
+ print(slave.name)
except AttributeError:
log("Only bond master devices have slaves")
sys.exit(6)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/icfg.git
[email protected]:src-openeuler/icfg.git
src-openeuler
icfg
icfg
master

搜索帮助