Fix regexp error

This commit is contained in:
Ilya Zverev 2019-06-04 11:15:21 +03:00
parent 6647dfd28e
commit a7af835ce4
3 changed files with 9 additions and 4 deletions

View file

@ -2,6 +2,12 @@
## master branch
## 1.4.1
_Released 2019-06-04_
* Fixed an error when the query is pure regexp and it did not match anything.
## 1.4.0
_Released 2018-05-30_

View file

@ -200,9 +200,8 @@ class OsmDownloader:
found = False
for t2 in tag[1:]:
if t2[0] == '~':
m = re.search(t2[1:], value)
if not m:
return False
if re.search(t2[1:], value):
found = True
elif t2[0] == '!':
if t2[1:].lower() in value.lower():
found = True

View file

@ -1 +1 @@
__version__ = '1.4.0'
__version__ = '1.4.1'