From 5ee344ab421cb9ba91879437980d9a884e959ed0 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Wed, 11 Sep 2019 10:00:46 -0700 Subject: [PATCH] script: raw_input was renamed to input in py3 Signed-off-by: Patrick Donnelly --- src/script/ptl-tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/ptl-tool.py b/src/script/ptl-tool.py index 569d2746c8bc3..a171cf57543af 100755 --- a/src/script/ptl-tool.py +++ b/src/script/ptl-tool.py @@ -291,7 +291,7 @@ def build_branch(args): indications.add("Reviewed-by: "+NEW_CONTRIBUTORS[user]) except KeyError as e: try: - name = raw_input("Need name for contributor \"%s\" (use ^D to skip); Reviewed-by: " % user) + name = input("Need name for contributor \"%s\" (use ^D to skip); Reviewed-by: " % user) name = name.strip() if len(name) == 0: continue -- 2.39.5