diff options
Diffstat (limited to 'bitbake/lib')
| -rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index d75c618de6..700efcb4ac 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py | |||
| @@ -281,7 +281,8 @@ class FetchData(object): | |||
| 281 | for m in methods: | 281 | for m in methods: |
| 282 | if m.supports(url, self, d): | 282 | if m.supports(url, self, d): |
| 283 | self.method = m | 283 | self.method = m |
| 284 | break | 284 | return |
| 285 | raise NoMethodError("Missing implementation for url %s" % url) | ||
| 285 | 286 | ||
| 286 | def setup_localpath(self, d): | 287 | def setup_localpath(self, d): |
| 287 | self.setup = True | 288 | self.setup = True |
