aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/plugins/history.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/data/plugins/history.py')
-rw-r--r--examples/data/plugins/history.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/data/plugins/history.py b/examples/data/plugins/history.py
index 2ab2ce3..5e9e4e1 100644
--- a/examples/data/plugins/history.py
+++ b/examples/data/plugins/history.py
@@ -42,7 +42,6 @@ class History(object):
self.search_key = None
if self._temporary:
- print 'popping temporary'
return self._temporary.pop()
return ''
@@ -73,8 +72,6 @@ class History(object):
self._temporary.append(cmd)
self.cursor = len(self) - 1
- print 'adding temporary', self
-
def __getitem__(self, i):
if i < len(shared_history[self.prompt]):
return shared_history[self.prompt][i]