mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-27 03:21:44 +03:00
10 lines
221 B
Python
Executable File
10 lines
221 B
Python
Executable File
#!/usr/bin/env python3
|
|
# Convenience wrapper for easily running virt-manager from the git tree
|
|
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.dirname(__file__))
|
|
|
|
from virtManager import virtmanager
|
|
virtmanager.runcli()
|