Fix old-style class defination

This commit is contained in:
Ivan Kravets
2015-05-25 23:29:10 +03:00
parent be70047233
commit 7d949ecb16

View File

@ -55,7 +55,7 @@ class AsyncPipe(Thread):
self.join()
class cd:
class cd(object):
def __init__(self, new_path):
self.new_path = new_path
self.prev_path = os.getcwd()