From ebdee07b3ecd9b6a069f7e0b32175ff3de3d7428 2007-06-14 21:21:53 From: vivainio Date: 2007-06-14 21:21:53 Subject: [PATCH] rm extra print --- diff --git a/IPython/Extensions/pickleshare.py b/IPython/Extensions/pickleshare.py index 54b73e4..ac2e77a 100644 --- a/IPython/Extensions/pickleshare.py +++ b/IPython/Extensions/pickleshare.py @@ -124,9 +124,10 @@ class PickleShareDB(UserDict.DictMixin): def hdict(self, hashroot): """ Get all data contained in hashed category 'hashroot' as dict """ hfiles = self.keys(hashroot + "/*") + hfiles.sort() last = len(hfiles) and hfiles[-1] or '' if last.endswith('xx'): - print "using xx" + # print "using xx" hfiles = [last] + hfiles[:-1] all = {}