Skip to content

Commit c1741aa

Browse files
committed
culebra: fix for auto-regexp clock regexp
- Version 5.4.2
1 parent 55a68b0 commit c1741aa

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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.1',
6+
version='5.4.2',
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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ___________________/ /__/ /__/ /__/ /________________________________
1919
2020
'''
2121

22-
__version__ = '5.4.0'
22+
__version__ = '5.4.2'
2323

2424
import re
2525
import sys
@@ -97,7 +97,7 @@ OPTS_HELP = {
9797

9898
def fillAutoRegexpsRes():
9999
are = {}
100-
are['clock'] = re.compile('[012]\d:[0-5]\d')
100+
are['clock'] = re.compile('[012]?\d:[0-5]\d')
101101
d = "("
102102
for i in range(7):
103103
d += calendar.day_abbr[i]

0 commit comments

Comments
 (0)