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()