Do not omit last semi-colon when serializing css

This commit is contained in:
Kovid Goyal 2013-12-10 22:47:02 +05:30
parent faf9fc0e1b
commit 83bae66fde

View File

@ -52,6 +52,7 @@ def setup_cssutils_serialization():
prefs = cssutils.ser.prefs
prefs.indent = tprefs['editor_tab_stop_width'] * ' '
prefs.indentClosingBrace = False
prefs.omitLastSemicolon = False
class BusyCursor(object):