##// END OF EJS Templates
Remove debug print statements accidentally left over
fperez -
Show More
@@ -441,7 +441,7 b' class IPCompleter(Completer):'
441 matches = [text_prefix +
441 matches = [text_prefix +
442 protect_filename(f) for f in m0]
442 protect_filename(f) for f in m0]
443
443
444 print 'mm',matches # dbg
444 #print 'mm',matches # dbg
445 return single_dir_expand(matches)
445 return single_dir_expand(matches)
446
446
447 def alias_matches(self, text):
447 def alias_matches(self, text):
@@ -655,8 +655,8 b' class IPCompleter(Completer):'
655 except IndexError:
655 except IndexError:
656 return None
656 return None
657 except:
657 except:
658 from IPython.ultraTB import AutoFormattedTB; # dbg
658 #from IPython.ultraTB import AutoFormattedTB; # dbg
659 tb=AutoFormattedTB('Verbose');tb() #dbg
659 #tb=AutoFormattedTB('Verbose');tb() #dbg
660
660
661 # If completion fails, don't annoy the user.
661 # If completion fails, don't annoy the user.
662 return None
662 return None
General Comments 0
You need to be logged in to leave comments. Login now