Skip to content

Commit

Permalink
Fix f-string expression #19
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekmj303 committed Oct 6, 2024
1 parent a2bc605 commit b61d335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ytm2spt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def main(youtube_arg, spotify_arg, spotify_playlist_name, youtube_oauth, dryrun,
ytm2spt_logger.info(f'Found {total_songs_found} songs out of {len(songs)}')

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


if __name__ == "__main__":
Expand Down

0 comments on commit b61d335

Please sign in to comment.