Taddeus Kroes 13 anni fa
parent
commit
efa34f141d
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      csscom.py

+ 1 - 1
csscom.py

@@ -63,7 +63,7 @@ def parse_options():
 
 def _content(filename):
     handle = open(filename, 'r')
-    content = '\n' + handle.read()
+    content = handle.read()
     handle.close()
     return content