diff --git a/src/mapcss/Condition.py b/src/mapcss/Condition.py index df43468..6ed4e7a 100644 --- a/src/mapcss/Condition.py +++ b/src/mapcss/Condition.py @@ -44,13 +44,13 @@ class Condition: if t == 'eq': return tags[params[0]]==params[1] if t == 'ne': - return tags[params[0]]!=params[1] + return tags.get(params[0], "")!=params[1] if t == 'regex': return bool(self.regex.match(tags[params[0]])) if t == 'true': return (tags[params[0]]=='true') | (tags[params[0]]=='yes') | (tags[params[0]]=='1') - if t == 'untrue': - return (tags[params[0]]!='true') & (tags[params[0]]!='yes') & (tags[params[0]]!='1') + if t == 'false': + return (tags.get(params[0], "")=='false') | (tags.get(params[0], "")=='no') | (tags.get(params[0], "")=='') if t == 'set': if params[0] in tags: return tags[params[0]]!='' diff --git a/src/mapcss/StyleChooser.py b/src/mapcss/StyleChooser.py index 92a3635..d1739f2 100644 --- a/src/mapcss/StyleChooser.py +++ b/src/mapcss/StyleChooser.py @@ -121,11 +121,11 @@ class StyleChooser: elif "dashes" in a: "these things are arrays of float's or not in table at all" try: - print b + b = b.split(",") b = [float(x) for x in b] ra[a]= b - print b + except ValueError: pass else: