##// END OF EJS Templates
Fix casting
Matthias Bussonnier -
Show More
@@ -713,7 +713,7 b' class IPCompleter(Completer):'
713 713 text = os.path.expanduser(text)
714 714
715 715 if text == "":
716 return [cast_unicode_py2(text_prefix + protect_filename(f)) for f in self.glob("*")]
716 return [text_prefix + cast_unicode_py2(protect_filename(f)) for f in self.glob("*")]
717 717
718 718 # Compute the matches from the filesystem
719 719 m0 = self.clean_glob(text.replace('\\',''))
General Comments 0
You need to be logged in to leave comments. Login now