fix python2.6 issues with completing colorama. this happened because of a missing object parent class

This commit is contained in:
Dave Halter
2014-01-22 17:14:28 +01:00
parent c7cae7900b
commit c8fffbd7b6
2 changed files with 5 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ from .helpers import TestCase, cwd_at
class TestSetupReadline(TestCase):
class NameSpace():
class NameSpace(object):
pass
def __init__(self, *args, **kwargs):