forked from organicmaps/organicmaps
[python][generator] Fixed regex in stats.
This commit is contained in:
parent
6ebf4621b1
commit
48189981d1
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ RE_TIME_DELTA = re.compile(r'^(?:(?P<days>-?\d+) (days?, )?)?'
|
|||
r'(?P<seconds>-?\d+)'
|
||||
r'(?:\.(?P<microseconds>\d{1,6})\d{0,6})?$')
|
||||
|
||||
RE_FINISH_STAGE = re.compile(r"(.*)Stage (\w+): finished in (.+)$")
|
||||
RE_FINISH_STAGE = re.compile(r"(.*)Stage ([A-Za-z ]+): finished in (.+)$")
|
||||
|
||||
|
||||
def read_stat(f):
|
||||
|
|
Loading…
Add table
Reference in a new issue