mirror of
https://github.com/opentx/opentx.git
synced 2025-07-23 16:25:16 +03:00
Use Python 2/3 compatible scripts
Almost entirely fixing print statements, but also a couple importing
changes, wrapped in try/excepts, and one case where dict.keys() not
being a list would be a problem.
Also reverts e41139a397
The real fix for #1907
This commit is contained in:
parent
b3d52e3525
commit
5efa5d47d3
14 changed files with 103 additions and 72 deletions
|
@ -1,5 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import sys, os
|
||||
|
||||
for filename in sys.argv[1:]:
|
||||
|
@ -14,7 +16,7 @@ for filename in sys.argv[1:]:
|
|||
if line.startswith("#ifndef "):
|
||||
guard = line[8:]
|
||||
if lines[i+1].strip() == "#define %s" % guard:
|
||||
print filename, ":", guard, "=>", newguard
|
||||
print(filename, ":", guard, "=>", newguard)
|
||||
lines[i] = "#ifndef %s\n" % newguard
|
||||
lines[i+1] = "#define %s\n" % newguard
|
||||
end = -1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue