summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/bsp/engine.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/bsp/engine.py b/scripts/lib/bsp/engine.py
index 0c162ebdb3..c44bbc51c9 100644
--- a/scripts/lib/bsp/engine.py
+++ b/scripts/lib/bsp/engine.py
@@ -200,7 +200,7 @@ class EditBoxInputLine(InputLine):
200 200
201 msg += " [default: " + default_choice + "]" 201 msg += " [default: " + default_choice + "]"
202 202
203 line = name + " = default(raw_input(\"" + msg + " \"), " + name + ")" 203 line = name + " = default(input(\"" + msg + " \"), " + name + ")"
204 204
205 return line 205 return line
206 206
@@ -313,7 +313,7 @@ class BooleanInputLine(InputLine):
313 313
314 msg += " [default: " + default_choice + "]" 314 msg += " [default: " + default_choice + "]"
315 315
316 line = name + " = boolean(raw_input(\"" + msg + " \"), " + name + ")" 316 line = name + " = boolean(input(\"" + msg + " \"), " + name + ")"
317 317
318 return line 318 return line
319 319