Skip to content

Commit

Permalink
f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
phcreery committed Jan 12, 2021
1 parent 50390f5 commit f1d10ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spotdl/download/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ def _perform_audio_download(self, convertedFileName, tempFolder, trackAudioStrea
# ! downloadTrackers download queue and all is well...
# !
# ! None is again used as a convenient exit
tempFiles = Path(tempFolder).glob(convertedFileName + '.*')
tempFiles = Path(tempFolder).glob(f'{convertedFileName}.*')
for tempFile in tempFiles:
tempFile.unlink()
return None
Expand Down

0 comments on commit f1d10ec

Please sign in to comment.