summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2013-01-25 15:00:25 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-25 14:12:36 +0000
commit2f1aba504c592b5983d09e84cba71f86e8cea02a (patch)
tree465d232b6d47c3c2e0e04c442ffc09e83fc74a2a /meta/lib
parentff72823d4089fe9a47edb5c3f74eed39360db0e3 (diff)
downloadast2050-yocto-poky-2f1aba504c592b5983d09e84cba71f86e8cea02a.zip
ast2050-yocto-poky-2f1aba504c592b5983d09e84cba71f86e8cea02a.tar.gz
prservice.py: fix NameError: global name 'host' is not defined
* http://git.openembedded.org/openembedded-core/commit/?id=e00f49de8b1f79c3e07b887d257bd75a46052fa0 removed host and port variables (From OE-Core rev: 494439c95d33b2ad457cc205413680b0bf176560) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/prservice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/prservice.py b/meta/lib/oe/prservice.py
index 57fb39a..27883a7 100644
--- a/meta/lib/oe/prservice.py
+++ b/meta/lib/oe/prservice.py
@@ -10,7 +10,7 @@ def prserv_make_conn(d, check = False):
raise Exception('service not available')
d.setVar("__PRSERV_CONN",conn)
except Exception, exc:
- bb.fatal("Connecting to PR service %s:%s failed: %s" % (host, port, str(exc)))
+ bb.fatal("Connecting to PR service %s:%s failed: %s" % (host_params[0], host_params[1], str(exc)))
return conn
OpenPOWER on IntegriCloud