summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
authorJeff Polk <jeff.polk@windriver.com>2012-05-04 08:05:15 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-04 16:44:57 +0100
commit1c34d5822d9cccdfb5954c583f31fa8bdceaf075 (patch)
tree899ee68e43490821915b7585f1bf5a3f8937a881 /bitbake/lib/bb/fetch2/__init__.py
parentca8e06e8a00aca5466a871dab31598473d5cb306 (diff)
downloadpoky-1c34d5822d9cccdfb5954c583f31fa8bdceaf075.tar.gz
bitbake/fetch2: Fix spelling error in network access error message
(Bitbake rev: b766630ed7e099fffe817928a2811272677a1b26) Signed-off-by: Jeff Polk <jeff.polk@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/__init__.py')
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 414cc2b6b1..3391e6afe8 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -99,7 +99,7 @@ class ParameterError(BBFetchException):
99class NetworkAccess(BBFetchException): 99class NetworkAccess(BBFetchException):
100 """Exception raised when network access is disabled but it is required.""" 100 """Exception raised when network access is disabled but it is required."""
101 def __init__(self, url, cmd): 101 def __init__(self, url, cmd):
102 msg = "Network access disabled through BB_NO_NETWORK but access rquested with command %s (for url %s)" % (cmd, url) 102 msg = "Network access disabled through BB_NO_NETWORK but access requested with command %s (for url %s)" % (cmd, url)
103 self.url = url 103 self.url = url
104 self.cmd = cmd 104 self.cmd = cmd
105 BBFetchException.__init__(self, msg) 105 BBFetchException.__init__(self, msg)