]> code.ossystems Code Review - openembedded-core.git/commitdiff
sanity: check_path_length: replace tab with 8 spaces
authorMartin Jansa <martin.jansa@gmail.com>
Mon, 18 Feb 2013 23:20:11 +0000 (23:20 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 19 Feb 2013 16:35:42 +0000 (08:35 -0800)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/sanity.bbclass

index 15998755c17961f2eaaedc95914a25acbfeb2ffd..d3bf05a803dd05ad95c1ba60dfb9b0a19a58a85b 100644 (file)
@@ -226,7 +226,7 @@ def check_create_long_filename(filepath, pathname):
 
 def check_path_length(filepath, pathname, limit):
     if len(filepath) > limit:
-       return "The length of %s is longer than 410, this would cause unexpected errors, please use a shorter path.\n" % pathname
+        return "The length of %s is longer than 410, this would cause unexpected errors, please use a shorter path.\n" % pathname
     return ""
 
 def check_connectivity(d):