summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbitbake/lib/bb/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
index c51c6f2e43..eba4aefb54 100755
--- a/bitbake/lib/bb/main.py
+++ b/bitbake/lib/bb/main.py
@@ -259,7 +259,7 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters):
259 help="The name/address for the bitbake xmlrpc server to bind to.") 259 help="The name/address for the bitbake xmlrpc server to bind to.")
260 260
261 parser.add_option("-T", "--idle-timeout", type=float, dest="server_timeout", 261 parser.add_option("-T", "--idle-timeout", type=float, dest="server_timeout",
262 default=float(os.environ.get("BB_SERVER_TIMEOUT", 0)) or None, 262 default=os.environ.get("BB_SERVER_TIMEOUT", 0) or None,
263 help="Set timeout to unload bitbake server due to inactivity") 263 help="Set timeout to unload bitbake server due to inactivity")
264 264
265 parser.add_option("", "--no-setscene", action="store_true", 265 parser.add_option("", "--no-setscene", action="store_true",