From e1d7a45bb662327e64d0624ab7eaba4d8947033a Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 10 Mar 2014 15:28:48 +0000 Subject: bitbake: bitbake: fix typo in variable name When passing -t with an incorrect server type, the error message was using a variable that doesn't exist. (Bitbake rev: 98b991287df06cd89955c1d0591fce3b5d4403d1) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- bitbake/bin/bitbake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/bin') diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index cbfd2c97b6..5c0b2d4d2a 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -259,7 +259,7 @@ def main(): servermodule = getattr(module, server_type) except AttributeError: sys.exit("FATAL: Invalid server type '%s' specified.\n" - "Valid interfaces: xmlrpc, process [default]." % servertype) + "Valid interfaces: xmlrpc, process [default]." % server_type) if configParams.server_only: if configParams.servertype != "xmlrpc": -- cgit v1.2.3-54-g00ecf