mirror of
https://github.com/EdgeTX/edgetx.git
synced 2025-07-23 08:15:13 +03:00
All python file(...) converted to open(...)
This commit is contained in:
parent
2fac92a843
commit
f47692a258
4 changed files with 9 additions and 9 deletions
|
@ -4,11 +4,11 @@ import sys
|
|||
|
||||
filename = sys.argv[1]
|
||||
print filename
|
||||
fr = file(filename)
|
||||
fw = file(filename+".new", "w")
|
||||
ew = file(filename+".en", "w")
|
||||
hw = file(filename+".stringsh", "w")
|
||||
cw = file(filename+".stringsc", "w")
|
||||
fr = open(filename)
|
||||
fw = open(filename+".new", "w")
|
||||
ew = open(filename+".en", "w")
|
||||
hw = open(filename+".stringsh", "w")
|
||||
cw = open(filename+".stringsc", "w")
|
||||
|
||||
replacements = {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue