mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-04-25 08:38:10 -04:00
7 lines
136 B
Python
7 lines
136 B
Python
import sys
|
|
|
|
with open(sys.argv[1]) as fd:
|
|
for line in fd.readlines():
|
|
sys.stdout.write(line)
|
|
sys.stderr.write(line)
|