From 98b991287df06cd89955c1d0591fce3b5d4403d1 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 10 Mar 2014 15:28:48 +0000 Subject: 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 --- bin/bitbake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/bitbake') diff --git a/bin/bitbake b/bin/bitbake index cbfd2c97b..5c0b2d4d2 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": -- cgit 1.2.3-korg