##// END OF EJS Templates
use arg_split(...strict=False) in module_completer
Min RK -
Show More
@@ -236,7 +236,7 b' def module_completer(self,event):'
236 236 def magic_run_completer(self, event):
237 237 """Complete files that end in .py or .ipy for the %run command.
238 238 """
239 comps = arg_split(event.line)
239 comps = arg_split(event.line, strict=False)
240 240 relpath = (len(comps) > 1 and comps[-1] or '').strip("'\"")
241 241
242 242 #print("\nev=", event) # dbg
General Comments 0
You need to be logged in to leave comments. Login now