From a7af835ce44b3ac194469b53b7f388bba168cbe4 Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Tue, 4 Jun 2019 11:15:21 +0300 Subject: [PATCH] Fix regexp error --- CHANGELOG.md | 6 ++++++ conflate/osm.py | 5 ++--- conflate/version.py | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c90f011..8183edb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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_ diff --git a/conflate/osm.py b/conflate/osm.py index 4392eb0..2c03afa 100644 --- a/conflate/osm.py +++ b/conflate/osm.py @@ -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 diff --git a/conflate/version.py b/conflate/version.py index 96e3ce8..8e3c933 100644 --- a/conflate/version.py +++ b/conflate/version.py @@ -1 +1 @@ -__version__ = '1.4.0' +__version__ = '1.4.1'