From patchwork Fri May 4 14:05:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 2/2] bitbake/fetch2: Fix spelling error in network access error message Date: Fri, 04 May 2012 14:05:15 -0000 From: Jeff Polk X-Patchwork-Id: 27071 Message-Id: <1336140315-5171-2-git-send-email-jeff.polk@windriver.com> To: Signed-off-by: Jeff Polk --- lib/bb/fetch2/__init__.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py index 414cc2b..3391e6a 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)