[gnome-continuous-yocto/gnomeostree-3.28-rocko: 3641/8267] edgerouter.py: avoid python3 exception



commit a0374e92a82e8c31964163f2eefa471bfe1eb0d4
Author: Juro Bystricky <juro bystricky intel com>
Date:   Sat Dec 10 09:13:38 2016 -0800

    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 <juro bystricky intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 .../lib/oeqa/controllers/edgeroutertarget.py       |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py 
b/meta-yocto-bsp/lib/oeqa/controllers/edgeroutertarget.py
index b3338ca..9c47b5b 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',


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]