From 8b70cd5a7b3a19371312350089c0771115d8f6d1 Mon Sep 17 00:00:00 2001 From: vng Date: Thu, 23 Jan 2014 16:41:43 +0300 Subject: [PATCH] Fixed bug in *::* processing. --- src/mapcss/StyleChooser.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/mapcss/StyleChooser.py b/src/mapcss/StyleChooser.py index f876d92..39676e9 100644 --- a/src/mapcss/StyleChooser.py +++ b/src/mapcss/StyleChooser.py @@ -181,9 +181,10 @@ class StyleChooser: x["object-id"] = oid if oid == "::*": hasall = True - if x.get("object-id") == ra["object-id"]: - x.update(ra) - break + else: + if x.get("object-id") == ra["object-id"]: + x.update(ra) + break else: if not hasall: allinit.update(ra)