This commit is contained in:
Thomas Nagy 2014-01-04 12:15:21 +01:00
parent 1b34dadd88
commit 4ce22a6fa2
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ except ImportError:
def popleft(self):
return self.pop(0)
def appendleft(self, x):
sefl.insert(0, x)
self.insert(0, x)
try:
import _winreg as winreg
except ImportError: