소스 검색

Code cleanup

Taddeus Kroes 13 년 전
부모
커밋
efa34f141d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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