From e851d444710d7073037a5c01c216c3c40a594650 Mon Sep 17 00:00:00 2001 From: phixxy Date: Thu, 5 Mar 2026 14:30:31 -0800 Subject: [PATCH] changed/removed some text outputs --- skratch.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/skratch.py b/skratch.py index 089142c..9672b16 100755 --- a/skratch.py +++ b/skratch.py @@ -19,7 +19,7 @@ def delete_all(d): for file in files: f = os.path.join(d,file) os.remove(f) - print(f"removing: {f}") + print(f"Removing: {f}") print("Done") def list_all(d): @@ -61,8 +61,7 @@ def main(): parser = argparse.ArgumentParser( prog='skratch', - description='Creates a temp file and opens it in an editor', - epilog='Text at the bottom of help') + description='Creates a temp file and opens it in an editor') group = parser.add_mutually_exclusive_group()