Browse Source

Code cleanup

Taddeus Kroes 13 years ago
parent
commit
efa34f141d
1 changed files with 1 additions and 1 deletions
  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