From a0374e92a82e8c31964163f2eefa471bfe1eb0d4 Mon Sep 17 00:00:00 2001 From: Juro Bystricky Date: Sat, 10 Dec 2016 09:13:38 -0800 Subject: edgerouter.py: avoid python3 exception This fixes an error such as: Exception: File "/master/poky/meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py", line 47 self.image_fstype = self.get_image_fstype(d) TabError: inconsistent use of tabs and spaces in indentation (From meta-yocto rev: 5ff5dc2767dfef93c314e7465a52ca2dce553604) Signed-off-by: Juro Bystricky Signed-off-by: Richard Purdie --- meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-yocto-bsp') diff --git a/meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py b/meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py index b3338ca859..9c47b5b044 100644 --- a/meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py +++ b/meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py @@ -44,7 +44,7 @@ class EdgeRouterTarget(MasterImageHardwareTarget): def __init__(self, d): super(EdgeRouterTarget, self).__init__(d) - self.image_fstype = self.get_image_fstype(d) + self.image_fstype = self.get_image_fstype(d) self.deploy_cmds = [ 'mount -L boot /boot', 'mkdir -p /mnt/testrootfs', -- cgit 1.2.3-korg