[bitbake-devel] [PATCH] bitbake: fix typo in variable name

Ross Burton ross.burton at intel.com
Mon Mar 10 15:28:48 UTC 2014


When passing -t with an incorrect server type, the error message was using a
variable that doesn't exist.

Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 bitbake/bin/bitbake |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index cbfd2c9..5c0b2d4 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":
-- 
1.7.10.4




More information about the bitbake-devel mailing list