From: Tony Mack Date: Mon, 31 Mar 2008 23:37:34 +0000 (+0000) Subject: fix errors X-Git-Tag: tests-4.2-4~120 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=a3d23cdc94a869ed14c6b8d8940731881339e984;p=tests.git fix errors --- diff --git a/qaapi/qa/Remote.py b/qaapi/qa/Remote.py index 5fbdf4f..c9d36f6 100644 --- a/qaapi/qa/Remote.py +++ b/qaapi/qa/Remote.py @@ -8,7 +8,7 @@ class Remote: command = " chroot %s %s" % (self['chroot'], command) if 'vserver' in self and self['vserver']: command = " vserver %s exec %s " % (self['vserver'], command) - if 'host' in self and self['host'] not in ['localhost', self.confg.hostname]: + if 'host' in self and self['host'] not in ['localhost', self.config.hostname]: options = "" if 'rootkey' in self and self['rootkey']: options = "-i %s " % self['rootkey']