mirror of
https://github.com/morpheus65535/bazarr
synced 2025-03-04 10:28:15 +00:00
6 lines
136 B
Python
6 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)
|