mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
9 lines
276 B
Python
9 lines
276 B
Python
import sys
|
|
|
|
with open(sys.argv[1], 'r') as fd:
|
|
content = '\n'.join(line.strip() for line in fd if line.strip())
|
|
if len(sys.argv) == 3:
|
|
content = content.replace('Win32', sys.argv[2]).replace('x64', sys.argv[2])
|
|
with open(sys.argv[1], 'w') as fd:
|
|
fd.write(content)
|