Remove stray prints (#2333)

This commit is contained in:
Adrian Sampson 2016-12-21 21:11:16 -05:00
parent 3528a675fa
commit 8cc2ac5b39

View file

@ -761,7 +761,6 @@ class MP3PeopleStorageStyle(MP3StorageStyle):
def store(self, mutagen_file, value):
frames = mutagen_file.tags.getall(self.key)
print(frames)
# Try modifying in place.
found = False
@ -778,7 +777,6 @@ class MP3PeopleStorageStyle(MP3StorageStyle):
encoding=mutagen.id3.Encoding.UTF8,
people=[[self.involvement, value]]
)
print(frame)
mutagen_file.tags.add(frame)
def fetch(self, mutagen_file):