Skip to content

Commit

Permalink
Removed unneeded f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
sammyhori committed Sep 6, 2024
1 parent db520e7 commit c89b190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radioactive/recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def record_audio_from_url(input_url, output_file, force_mp3, loglevel):
subprocess.run(ffmpeg_command, check=True)

log.debug("Record: {}".format(str(ffmpeg_command)))
log.info(f"Audio recorded successfully.")
log.info("Audio recorded successfully.")

except subprocess.CalledProcessError as e:
log.debug("Error: {}".format(e))
Expand Down

0 comments on commit c89b190

Please sign in to comment.