Skip to content

Commit 98d1f49

Browse files
committed
little things
1 parent 36b737f commit 98d1f49

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

strip.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,12 @@ def strip(file):
5252

5353

5454
def main():
55-
print("Stripping trailing whitespace...")
5655
for file in common.get_markdown_files():
5756
if needs_stripping(file):
58-
print(" Stripping:", file)
57+
print("Stripping", file)
5958
strip(file)
6059
else:
61-
print(" No trailing whitespace:", file)
60+
print("No trailing whitespace in", file)
6261

6362

6463
if __name__ == '__main__':

0 commit comments

Comments
 (0)