From: Richard Purdie Date: Fri, 18 Dec 2009 12:11:42 +0000 (+0000) Subject: base.bbclass: Fix indentation error X-Git-Tag: 2011-1~6509 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=1ec852688b9da684378c51d2305d3d06f1cccfec;p=openembedded-core.git base.bbclass: Fix indentation error --- diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 3639320906..048353170f 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -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 "" def base_detect_branch(d): - path = base_get_scmbasepath(d) + path = base_get_scmbasepath(d) scms = [base_get_metadata_git_branch]