summaryrefslogtreecommitdiffstats
path: root/bin/bitbake
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2014-03-10 15:28:48 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-11 12:27:17 -0700
commit98b991287df06cd89955c1d0591fce3b5d4403d1 (patch)
tree0d9a04b81acb5c9837a09f99aac10ebffc3c714e /bin/bitbake
parente84866b7aa5a1b272c81fde548f3c7828b036bb9 (diff)
downloadbitbake-contrib-98b991287df06cd89955c1d0591fce3b5d4403d1.tar.gz
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 <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin/bitbake')
-rwxr-xr-xbin/bitbake2
1 files changed, 1 insertions, 1 deletions
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":