diff options
author | Jeff Polk <jeff.polk@windriver.com> | 2012-05-04 08:05:15 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-04 16:44:57 +0100 |
commit | 1c34d5822d9cccdfb5954c583f31fa8bdceaf075 (patch) | |
tree | 899ee68e43490821915b7585f1bf5a3f8937a881 /bitbake/lib/bb | |
parent | ca8e06e8a00aca5466a871dab31598473d5cb306 (diff) | |
download | 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/lib/bb')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
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): | |||
99 | class NetworkAccess(BBFetchException): | 99 | class 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) |