Displaying rename status better

This commit is contained in:
Jamie Hardt
2025-08-30 23:19:32 -07:00
parent 906656a8c9
commit 010a93cf2b

View File

@@ -126,7 +126,7 @@ def recommend(text, paths, model, interactive):
elif retval[2] is not None:
new_name = retval[2] + '_' + os.path.basename(path)
new_path = os.path.join(os.path.dirname(path), new_name)
print(f"Renaming {path} to {new_path}")
print(f"Renaming {path} \n to {new_path}")
os.rename(path, new_path)
break