diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-01-25 15:00:25 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-25 14:06:07 +0000 |
commit | 494439c95d33b2ad457cc205413680b0bf176560 (patch) | |
tree | dd6332ad31781a0138da2c10bdfff56b80a61666 | |
parent | 44a2374dcfd68c8e158e0c901d75dbd7327652a5 (diff) | |
download | openembedded-core-494439c95d33b2ad457cc205413680b0bf176560.tar.gz openembedded-core-494439c95d33b2ad457cc205413680b0bf176560.tar.bz2 openembedded-core-494439c95d33b2ad457cc205413680b0bf176560.zip |
prservice.py: fix NameError: global name 'host' is not defined
* http://git.openembedded.org/openembedded-core/commit/?id=e00f49de8b1f79c3e07b887d257bd75a46052fa0
removed host and port variables
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oe/prservice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/prservice.py b/meta/lib/oe/prservice.py index 57fb39a371..27883a7e90 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 |