summaryrefslogtreecommitdiffstats
path: root/bitbake
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
parentca8e06e8a00aca5466a871dab31598473d5cb306 (diff)
downloadast2050-yocto-poky-1c34d5822d9cccdfb5954c583f31fa8bdceaf075.zip
ast2050-yocto-poky-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')
-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 414cc2b..3391e6a 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -99,7 +99,7 @@ class ParameterError(BBFetchException):
class NetworkAccess(BBFetchException):
"""Exception raised when network access is disabled but it is required."""
def __init__(self, url, cmd):
- msg = "Network access disabled through BB_NO_NETWORK but access rquested with command %s (for url %s)" % (cmd, url)
+ msg = "Network access disabled through BB_NO_NETWORK but access requested with command %s (for url %s)" % (cmd, url)
self.url = url
self.cmd = cmd
BBFetchException.__init__(self, msg)
OpenPOWER on IntegriCloud