Explorar el Código

Removed debug print statement.

Taddeus Kroes hace 14 años
padre
commit
0bb1771ff4
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      src/writer.py

+ 0 - 1
src/writer.py

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