]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: Fix indentation error
authorRichard Purdie <rpurdie@linux.intel.com>
Fri, 18 Dec 2009 12:11:42 +0000 (12:11 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Fri, 18 Dec 2009 12:11:42 +0000 (12:11 +0000)
meta/classes/base.bbclass

index 3639320906c8b3f55f1c3fb5f33256e064b02c41..048353170fed477b3d4e85bf6941a4c748d68d00 100644 (file)
@@ -724,7 +724,7 @@ METADATA_BRANCH ?= "${@base_detect_branch(d)}"
 METADATA_REVISION ?= "${@base_detect_revision(d)}"
 
 def base_detect_revision(d):
-    path = base_get_scmbasepath(d)
+       path = base_get_scmbasepath(d)
 
        scms = [base_get_metadata_git_revision, \
                        base_get_metadata_svn_revision]
@@ -737,7 +737,7 @@ def base_detect_revision(d):
        return "<unknown>"      
 
 def base_detect_branch(d):
-    path = base_get_scmbasepath(d)
+       path = base_get_scmbasepath(d)
 
        scms = [base_get_metadata_git_branch]