From fdc8dfd63acf2e7191edbf14fcb7df374a3f780d Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 5 Jan 2016 15:13:23 -0800 Subject: framework/test/base.py: fix class/__slots__ conflict in python3 Signed-off-by: Dylan Baker Acked-by: Jose Fonseca --- framework/test/base.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'framework') diff --git a/framework/test/base.py b/framework/test/base.py index 43f81c409..0c15808e8 100644 --- a/framework/test/base.py +++ b/framework/test/base.py @@ -129,8 +129,7 @@ class Test(object): """ __metaclass__ = abc.ABCMeta - __slots__ = ['run_concurrent', 'env', 'result', 'cwd', '_command', - 'timeout'] + __slots__ = ['run_concurrent', 'env', 'result', 'cwd', '_command'] timeout = None def __init__(self, command, run_concurrent=False, timeout=None): -- cgit v1.2.3