1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2026-01-21 12:33:41 +03:00
Files
libvirt/scripts/meson-warnings.py
Laine Stump 7a0c2fba91 scripts: don't import shutil in meson-warnings.py
It's never used, which makes flake8 complain.

Fixes: 50ad6026ad
Signed-off-by: Laine Stump <laine@redhat.com>
2026-01-19 00:38:16 -05:00

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)