File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 33from setuptools import setup , find_packages
44
55setup (name = 'androidviewclient' ,
6- version = '5.4.4 ' ,
6+ version = '5.4.5 ' ,
77 description = '''AndroidViewClient is a 100% pure python tool that
88 simplifies test script creation providing higher level operations and the ability of
99 obtaining the tree of Views present at any given moment on the device or emulator screen.
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ ___________________/ /__/ /__/ /__/ /________________________________
1919
2020'''
2121
22- __version__ = '5.4.4 '
22+ __version__ = '5.4.5 '
2323
2424import re
2525import sys
@@ -197,7 +197,7 @@ def printVerboseComments(view):
197197 pass
198198 try :
199199 tag = view .getTag ()
200- if tab != 'null' :
200+ if tag != 'null' :
201201 print 'tag=%s' % tag ,
202202 except :
203203 pass
@@ -304,8 +304,6 @@ def traverseAndPrint(view):
304304 @param view: the View
305305 '''
306306
307- if indent :
308- print indent [:- 1 ],
309307 if options [VERBOSE_COMMENTS ]:
310308 printVerboseComments (view )
311309 if options [FIND_VIEWS_BY_ID ]:
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Created on Feb 3, 2012
66@author: diego
77'''
88
9- __version__ = '5.4.4 '
9+ __version__ = '5.4.5 '
1010
1111import sys
1212import os
You can’t perform that action at this time.
0 commit comments