aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch/__init__.py
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-06-04 14:04:37 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-06-04 21:49:48 +0800
commitb786f1f60fb50565295e7c8e979b471327d924f3 (patch)
tree995c2b17a72c49a4eb515ec0e9b964ea9d586228 /lib/bb/fetch/__init__.py
parent9937d5992d72104c670e069f4c46cc62a490e18f (diff)
downloadbitbake-b786f1f60fb50565295e7c8e979b471327d924f3.tar.gz
fetch: commentary typo fix in fetcher_init()
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'lib/bb/fetch/__init__.py')
-rw-r--r--lib/bb/fetch/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch/__init__.py b/lib/bb/fetch/__init__.py
index 7edd45d28..5fbacc73d 100644
--- a/lib/bb/fetch/__init__.py
+++ b/lib/bb/fetch/__init__.py
@@ -153,7 +153,7 @@ def fetcher_init(d):
Calls before this must not hit the cache.
"""
pd = persist_data.PersistData(d)
- # When to drop SCM head revisions controled by user policy
+ # When to drop SCM head revisions controlled by user policy
srcrev_policy = bb.data.getVar('BB_SRCREV_POLICY', d, 1) or "clear"
if srcrev_policy == "cache":
bb.msg.debug(1, bb.msg.domain.Fetcher, "Keeping SRCREV cache due to cache policy of: %s" % srcrev_policy)