changed/removed some text outputs

This commit is contained in:
phixxy 2026-03-05 14:30:31 -08:00
parent ac1acfb908
commit e851d44471

View file

@ -19,7 +19,7 @@ def delete_all(d):
for file in files: for file in files:
f = os.path.join(d,file) f = os.path.join(d,file)
os.remove(f) os.remove(f)
print(f"removing: {f}") print(f"Removing: {f}")
print("Done") print("Done")
def list_all(d): def list_all(d):
@ -61,8 +61,7 @@ def main():
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
prog='skratch', prog='skratch',
description='Creates a temp file and opens it in an editor', description='Creates a temp file and opens it in an editor')
epilog='Text at the bottom of help')
group = parser.add_mutually_exclusive_group() group = parser.add_mutually_exclusive_group()