Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed AttributeError
  • Loading branch information
Javinator9889 committed Oct 9, 2019
1 parent d1ee49e commit 09e7a55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions YouTubeMDBot/tests/converter.py
Expand Up @@ -23,8 +23,8 @@ def find_metadata(self, downloader: YouTubeDownloader) -> Tuple[BytesIO, bytes]:
mp3_container = BytesIO(mp3.get_output())
ogg_container = BytesIO(ogg.get_output())

print(mp3.get_err().decode("utf-8"))
print(ogg.get_err().decode("utf-8"))
print(mp3.get_extra().decode("utf-8"))
print(ogg.get_extra().decode("utf-8"))

print(mutagen.File(mp3_container).pprint())
print(mutagen.File(ogg_container).pprint())
Expand Down

0 comments on commit 09e7a55

Please sign in to comment.