avocado: Remove unused variables

Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
上级 62d1bf89
......@@ -109,7 +109,7 @@ class Remote(object):
try:
fabric.operations.put(local_path,
remote_path)
except ValueError as err:
except ValueError:
return False
return True
......@@ -124,6 +124,6 @@ class Remote(object):
try:
fabric.operations.get(remote_path,
local_path)
except ValueError as err:
except ValueError:
return False
return True
......@@ -29,7 +29,7 @@ class linuxbuild(test.Test):
def setup(self):
kernel_version = self.params.linux_version
config_path = tarball_path = self.get_deps_path('config')
config_path = self.get_deps_path('config')
self.linux_build = kernel_build.KernelBuild(kernel_version,
config_path,
self.srcdir)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册