Skip to content

Commit

Permalink
Truly quiet.
Browse files Browse the repository at this point in the history
  • Loading branch information
Knucklessg1 committed Apr 26, 2024
1 parent bf5dd62 commit 961e33a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions media_manager/media_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,6 @@ def print(self, string, end="\n"):
if not self.quiet:
end = "\n"
print(string, end=end)
else:
print(string, end=end)

# Detect if series or a movie
def media_detection(self):
Expand Down Expand Up @@ -534,7 +532,7 @@ async def set_audio_metadata(self):
self.audio_tags['artwork'].first.thumbnail([64, 64])
self.audio_tags.save()
self.completed_media_files.append(self.media_files[self.media_file_index])
print(f"\t\tTrack: {self.audio_tags['title']}\n"
self.print(f"\t\tTrack: {self.audio_tags['title']}\n"
f"\t\tArtist:{self.audio_tags['artist']}\n"
f"\t\tAlbum: {self.audio_tags['album']}\n"
f"\t\tYear: {self.audio_tags['year']}\n"
Expand Down

0 comments on commit 961e33a

Please sign in to comment.