This commit is contained in:
ed 2021-07-31 12:38:53 +02:00
parent 44e76d5eeb
commit 08f4695283
2 changed files with 4 additions and 4 deletions

View file

@ -65,9 +65,9 @@ def uncomment(fpath):
def main():
print("uncommenting", end="")
print("uncommenting", end="", flush=True)
for f in sys.argv[1:]:
print(".", end="")
print(".", end="", flush=True)
uncomment(f)
print("k")