##// END OF EJS Templates
remove redundant function call
Srinivas Reddy Thatiparthy -
Show More
@@ -26,7 +26,7 b' def get_pasted_lines(sentinel, l_input=py3compat.input, quiet=False):'
26 prompt = ""
26 prompt = ""
27 while True:
27 while True:
28 try:
28 try:
29 l = str(l_input(prompt))
29 l = l_input(prompt)
30 if l == sentinel:
30 if l == sentinel:
31 return
31 return
32 else:
32 else:
General Comments 0
You need to be logged in to leave comments. Login now