summaryrefslogtreecommitdiffstats
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:15:57 +0100
commitb766630ed7e099fffe817928a2811272677a1b26 (patch)
tree73de319428d761b15ebced5a25ba002ed260f385
parentd5847bc5254b9d2f28a6b574f6157d1286add27c (diff)
downloadbitbake-b766630ed7e099fffe817928a2811272677a1b26.tar.gz
bitbake/fetch2: Fix spelling error in network access error message
Signed-off-by: Jeff Polk <jeff.polk@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index 414cc2b6b..3391e6afe 100644
--- a/lib/bb/fetch2/__init__.py
+++ b/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)