virt.virt_test_utils: run_autotest - 'tar' needs relative paths to strip the leading '/'
[autotest-zwu.git] / client / common_lib / check_version.py
blobca9616d16e37091c69588d02b6d00bd90251b42e
1 # This file must use Python 1.5 syntax.
3 from base_check_version import base_check_python_version
4 try:
5 from site_check_version import site_check_python_version
6 except ImportError:
7 class site_check_python_version:
8 pass
11 class check_python_version(site_check_python_version,
12 base_check_python_version):
13 pass