From: Juro Bystricky Date: Sat, 10 Dec 2016 17:13:38 +0000 (-0800) Subject: edgerouter.py: avoid python3 exception X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ff5dc2767dfef93c314e7465a52ca2dce553604;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Juro Bystricky Signed-off-by: Richard Purdie --- diff --git a/meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py b/meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py index b3338ca8595..9c47b5b044a 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',