tools/css: Require semicolons after CSS declarations.

This commit is contained in:
Steve Howell
2017-03-14 08:18:40 -07:00
committed by showell
parent a1d7e1b5f6
commit 2ffea94bd8
5 changed files with 73 additions and 70 deletions

View File

@@ -367,8 +367,7 @@ class CssDeclaration(object):
res += self.css_property
res += ':'
res += self.css_value.text()
if self.semicolon:
res += ';'
res += ';'
res += self.post_fluff
return res