blob: 7efd1a096a61a17bd97ab4e35e7a0a41c194c6c3 [file] [log] [blame]
jadmanskicefe2652008-10-08 21:02:27 +00001from autotest_lib.client.bin import base_sysinfo
jadmanski8cd6ab32008-06-03 15:42:11 +00002try:
jadmanski0afbb632008-06-06 21:10:57 +00003 from autotest_lib.client.bin import site_sysinfo
jadmanski8cd6ab32008-06-03 15:42:11 +00004except ImportError:
jadmanskicefe2652008-10-08 21:02:27 +00005 # no site_sysinfo, just make a class using the base version
6 class sysinfo(base_sysinfo.base_sysinfo):
7 pass
8else:
9 # otherwise, use the site version (should inherit from the base)
10 class sysinfo(site_sysinfo.site_sysinfo):
11 pass