blob: bf0b921c78df3ee03b939102457491f84936f7d4 [file] [log] [blame]
import os
from autotest_lib.server import installable_object
class SiteAutotest(installable_object.InstallableObject):
def get(self, location = None):
if not location:
location = os.path.join(self.serverdir, '../client')
location = os.path.abspath(location)
installable_object.InstallableObject.get(self, location)
self.got = True