We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36b737f commit 98d1f49Copy full SHA for 98d1f49
1 file changed
strip.py
@@ -52,13 +52,12 @@ def strip(file):
52
53
54
def main():
55
- print("Stripping trailing whitespace...")
56
for file in common.get_markdown_files():
57
if needs_stripping(file):
58
- print(" Stripping:", file)
+ print("Stripping", file)
59
strip(file)
60
else:
61
- print(" No trailing whitespace:", file)
+ print("No trailing whitespace in", file)
62
63
64
if __name__ == '__main__':
0 commit comments