Add whitespace after .

This commit is contained in:
heavenshell
2013-06-03 20:55:38 +09:00
parent 622331afa4
commit 108cfbdd5d

View File

@@ -76,7 +76,7 @@ def complete():
script = get_script(source=source, column=column)
completions = script.completions()
sig = script.call_signatures()
call_def =sig[0] if sig else None
call_def = sig[0] if sig else None
out = []
for c in completions: