Fixing get_history_item indexing to be 1 based, fixes bug #760901

This commit is contained in:
Jorgen Stenarson
2011-04-14 19:01:12 +02:00
parent 1d71dec2a0
commit 18cb7fe6ca
+2 -2
View File
@@ -49,8 +49,8 @@ class LineHistory(object):
return value
def get_history_item(self, index):
u'''Return the current contents of history item at index.'''
item = self.history[index]
u'''Return the current contents of history item at index (starts with index 1).'''
item = self.history[index - 1]
log(u"get_history_item: index:%d item:%r"%(index, item))
return item.get_line_text()