Files
virt-manager/virt-xml
T

10 lines
202 B
Python
Raw Normal View History

2020-01-26 17:12:09 -05:00
#!/usr/bin/python3
# Convenience wrapper for easily running virt-xml from the git tree
2020-01-26 17:12:09 -05:00
import os
import sys
2020-01-26 17:12:09 -05:00
sys.path.insert(0, os.path.dirname(__file__))
2020-01-26 17:12:09 -05:00
from virtinst import virtxml
virtxml.runcli()