Skip to content

Commit 8681234

Browse files
committed
Fixed culebra -E
- Version 9.2.1
1 parent 2cfa2c1 commit 8681234

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

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='9.2.0',
6+
version='9.2.1',
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.

src/com/dtmilano/android/adb/adbclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@author: Diego Torres Milano
1818
'''
1919

20-
__version__ = '9.2.0'
20+
__version__ = '9.2.1'
2121

2222
import sys
2323
import warnings

src/com/dtmilano/android/controlpanel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
@author: Ahmed Kasem
2020
'''
2121

22-
__version__ = '9.2.0'
22+
__version__ = '9.2.1'
2323

2424
import sys, os
2525
import Tkinter, tkFileDialog, ttk

src/com/dtmilano/android/culebron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
2020
'''
2121

22-
__version__ = '9.2.0'
22+
__version__ = '9.2.1'
2323

2424
import sys
2525
import threading

src/com/dtmilano/android/viewclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
@author: Diego Torres Milano
1919
'''
2020

21-
__version__ = '9.2.0'
21+
__version__ = '9.2.1'
2222

2323
import sys
2424
import warnings

tools/culebra

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

23-
__version__ = '9.2.0'
23+
__version__ = '9.2.1'
2424

2525
import re
2626
import sys
@@ -727,7 +727,7 @@ for o, a in optlist:
727727
version()
728728
elif o in ['I', CulebraOptions.IGNORE_SECURE_DEVICE]:
729729
kwargs1['ignoresecuredevice'] = True
730-
elif o in ['K', CulebraOptions.IGNORE_VERSION_CHECK]:
730+
elif o in ['E', CulebraOptions.IGNORE_VERSION_CHECK]:
731731
kwargs1['ignoreversioncheck'] = True
732732
elif o in ['F', CulebraOptions.FORCE_VIEW_SERVER_USE]:
733733
kwargs2['forceviewserveruse'] = True

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__ = '9.2.0'
9+
__version__ = '9.2.1'
1010

1111
import sys
1212
import os

0 commit comments

Comments
 (0)