11 lines
211 B
Python
Executable file
11 lines
211 B
Python
Executable file
#!/usr/bin/python -u
|
|
|
|
import common
|
|
from autotest_lib.tko import site_parse
|
|
site_parse.main()
|
|
|
|
try:
|
|
from autotest_lib.tko import private_site_parse
|
|
private_site_parse.main()
|
|
except ImportError:
|
|
pass
|