bitbake/fetch2: Fix spelling error in network access error message
authorJeff Polk <jeff.polk@windriver.com>
Fri, 4 May 2012 14:05:15 +0000 (08:05 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 4 May 2012 15:44:57 +0000 (16:44 +0100)
(Bitbake rev: b766630ed7e099fffe817928a2811272677a1b26)

Signed-off-by: Jeff Polk <jeff.polk@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/fetch2/__init__.py

index 414cc2b..3391e6a 100644 (file)
@@ -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)