partition.py revision 69bdaacdf2b8161ae95dded60ed6eedbeb5f8f47
1"""
2This is a high level partition module that executes the contents of
3base_partition.py and if it exists the contents of site_partition.py.
4"""
5
6from autotest_lib.client.bin.base_partition import *
7try:
8    from autotest_lib.client.bin.site_partition import *
9except ImportError:
10    pass
11