Fix replace_files prompt not showing
This commit is contained in:
parent
c5c5c28583
commit
c0e1732bbc
@ -126,9 +126,9 @@ def main():
|
|||||||
# Try to find a near match
|
# Try to find a near match
|
||||||
|
|
||||||
if process_no_matches:
|
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
|
# Use fzf to search
|
||||||
choice = pydymenu.fzf(parent_fnames, prompt)
|
choice = pydymenu.fzf(parent_fnames, prompt=prompt)
|
||||||
if choice:
|
if choice:
|
||||||
old_file = os.path.join(parent_dir, choice[0])
|
old_file = os.path.join(parent_dir, choice[0])
|
||||||
oldtags = get_tags(old_file)
|
oldtags = get_tags(old_file)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user