summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/__init__.py')
-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 414cc2b6b1..3391e6afe8 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -99,7 +99,7 @@ class ParameterError(BBFetchException):
99class NetworkAccess(BBFetchException): 99class 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)