mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2026-01-21 12:33:41 +03:00
It's never used, which makes flake8 complain.
Fixes: 50ad6026ad
Signed-off-by: Laine Stump <laine@redhat.com>
8 lines
126 B
Python
8 lines
126 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
with open(sys.argv[1], "w") as out:
|
|
for w in sys.argv[2:]:
|
|
print(w, file=out)
|