Fix variable misnaming

This commit is contained in:
Eric Torres
2020-10-23 11:23:55 -07:00
parent 1cb66c8834
commit c53d4e50b7
2 changed files with 2 additions and 2 deletions

View File

@ -42,4 +42,4 @@ def select_file_with_fzf(files):
except subprocess.CalledProcessError as e:
raise FZFError(error.NO_FILE_SELECTED_MESSAGE) from e
else:
return Path(selected_file.stdout.decode(LOCALE).strip("\x00"))
return Path(output.stdout.decode(LOCALE).strip("\x00"))