From: Ross Burton Date: Mon, 10 Mar 2014 15:28:48 +0000 (+0000) Subject: bitbake: fix typo in variable name X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=98b991287df06cd89955c1d0591fce3b5d4403d1;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/bin/bitbake b/bin/bitbake index cbfd2c97b61..5c0b2d4d2ac 100755 --- a/bin/bitbake +++ b/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":