changeset 121:fe432d010ecc

going to attempt 2.4 and 2.6 compatibility
author catherine@dellzilla
date Wed, 29 Oct 2008 10:46:08 -0400
parents fe47c5b269cc
children e62aa2f58b7b
files cmd2.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/cmd2.py	Tue Oct 28 14:09:44 2008 -0400
+++ b/cmd2.py	Wed Oct 29 10:46:08 2008 -0400
@@ -613,7 +613,7 @@
             
 class HistoryItem(str):
     def __init__(self, instr):
-        str.__init__(self, instr)
+        str.__init__(self)
         self.lowercase = self.lower()
         self.idx = None
     def pr(self):