Change string.join => "".join for simultaneous Python 2/3 support
Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
parent
05c238acc6
commit
94164014da
|
@ -1475,7 +1475,7 @@ def process_c_file(f, patch_infos):
|
|||
print("Examining", f)
|
||||
sys.stdout.flush()
|
||||
|
||||
text = string.join(input.readlines(), "")
|
||||
text = "".join(input.readlines())
|
||||
|
||||
i = 0
|
||||
while i < len(text):
|
||||
|
|
Loading…
Reference in New Issue