Skip to content

Commit f68e38c

Browse files
committed
fixing TypeError
1 parent b425355 commit f68e38c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testdroid/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from optparse import OptionParser
1212
from datetime import datetime
1313

14-
__version__ = '2.42.1'
14+
__version__ = '2.42.2'
1515

1616
FORMAT = "%(message)s"
1717
logging.basicConfig(format=FORMAT)
@@ -81,7 +81,7 @@ def update(self, pos, total):
8181
else:
8282
self.prog_bar += ' '
8383
if sys.platform.lower().startswith('win'):
84-
print(self +'\r')
84+
print(str(self) + '\r')
8585
else:
8686
print(str(self) + chr(27) + '[A')
8787

0 commit comments

Comments
 (0)