Signed-off-by: Lucas Meneghel Rodrigues <[email protected]>
---
server/autotest.py | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/server/autotest.py b/server/autotest.py
index 8591efd..aa2cc3a 100644
--- a/server/autotest.py
+++ b/server/autotest.py
@@ -115,7 +115,7 @@ class BaseAutotest(installable_object.InstallableObject):
except error.AutoservRunError:
logging.debug('Failed to create %s', path)
raise error.AutoservInstallError(
- 'Unable to find a place to install Autotest; tried %s',
+ 'Unable to find a place to install Autotest; tried %s' %
', '.join(client_autodir_paths))
@@ -241,8 +241,8 @@ class BaseAutotest(installable_object.InstallableObject):
# if that fails try to install using svn
if utils.run('which svn').exit_status:
- raise error.AutoservError('svn not found on target machine: %s'
- % host.name)
+ raise error.AutoservError('svn not found on target machine: %s' %
+ host.name)
try:
host.run('svn checkout %s %s' % (AUTOTEST_SVN, autodir))
except error.AutoservRunError, e:
--
1.7.5.1
_______________________________________________
Autotest mailing list
[email protected]
http://test.kernel.org/cgi-bin/mailman/listinfo/autotest