Fix replace_files prompt not showing

This commit is contained in:
Keith Edmunds 2023-04-06 18:51:08 +01:00
parent c5c5c28583
commit c0e1732bbc

View File

@ -126,9 +126,9 @@ def main():
# Try to find a near match
if process_no_matches:
prompt = f"\n file={new_fname}\n title={new_title}\n artist={new_artist}: "
prompt = f"file={new_fname}\n title={new_title}\n artist={new_artist}: "
# Use fzf to search
choice = pydymenu.fzf(parent_fnames, prompt)
choice = pydymenu.fzf(parent_fnames, prompt=prompt)
if choice:
old_file = os.path.join(parent_dir, choice[0])
oldtags = get_tags(old_file)