Skip to content
Snippets Groups Projects
Commit 0bb1771f authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Removed debug print statement.

parent 63fb3aaf
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,6 @@ def write_statements(statements): ...@@ -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)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment