소스 검색

Removed debug print statement.

Taddeus Kroes 14 년 전
부모
커밋
0bb1771ff4
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      src/writer.py

+ 0 - 1
src/writer.py

@@ -53,7 +53,6 @@ def write_statements(statements):
             start = INLINE_COMMENT_LEVEL * TABSIZE
             diff = start - len(line.expandtabs(TABSIZE))
 
-            print line.expandtabs(TABSIZE), start, len(line.expandtabs(TABSIZE)), diff
             # The comment must not be directly adjacent to the command itself
             if diff > 0:
                 tabs = '\t' * int(ceil(diff / float(TABSIZE)))