Skip to content

Commit b61d335

Browse files
committed
Fix f-string expression #19
1 parent a2bc605 commit b61d335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ytm2spt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def main(youtube_arg, spotify_arg, spotify_playlist_name, youtube_oauth, dryrun,
200200
ytm2spt_logger.info(f'Found {total_songs_found} songs out of {len(songs)}')
201201

202202
if songs_not_found:
203-
ytm2spt_logger.warning(f"Songs not found:\n{'\n'.join(songs_not_found)}")
203+
ytm2spt_logger.warning(f"Songs not found:\n{chr(10).join(songs_not_found)}")
204204

205205

206206
if __name__ == "__main__":

0 commit comments

Comments
 (0)