Remove forgotten debug/print in filename completion. (#1380)

This is in the latest 0.15, and when forwarding path completions to
jedi, print a lot of stuff on the screen.
This commit is contained in:
Matthias Bussonnier
2019-08-12 03:37:21 -07:00
committed by Dave Halter
parent 5d0d09bb7d
commit ecca190462

View File

@@ -47,7 +47,6 @@ def file_name_completions(evaluator, module_context, start_leaf, string,
potential_other_quote = \ potential_other_quote = \
code_lines[position[0] - 1][position[1]:position[1] + len(quote)] code_lines[position[0] - 1][position[1]:position[1] + len(quote)]
# Add a quote if it's not already there. # Add a quote if it's not already there.
print(repr(quote), repr(potential_other_quote), position)
if quote != potential_other_quote: if quote != potential_other_quote:
name += quote name += quote
else: else: