BaseTools: Rename raw_input() to input()

Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
Yunhua Feng 2018-08-14 11:23:47 +08:00 committed by Yonghong Zhu
parent 8371d87412
commit d3678942b4
1 changed files with 1 additions and 1 deletions

View File

@ -1026,7 +1026,7 @@ class ValueExpressionEx(ValueExpression):
if __name__ == '__main__':
pass
while True:
input = raw_input('Input expr: ')
input = input('Input expr: ')
if input in 'qQ':
break
try: