Skip to content

Commit f4cd30f

Browse files
committed
culebra: corrected indentation in autogenerated scripts
- Version 5.4.5
1 parent 40a99f2 commit f4cd30f

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

AndroidViewClient/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44

55
setup(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.

AndroidViewClient/tools/culebra

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ___________________/ /__/ /__/ /__/ /________________________________
1919
2020
'''
2121

22-
__version__ = '5.4.4'
22+
__version__ = '5.4.5'
2323

2424
import re
2525
import 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]:

AndroidViewClient/tools/dump

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

1111
import sys
1212
import os

0 commit comments

Comments
 (0)