Skip to content

Commit

Permalink
Remove stray prints (#2333)
Browse files Browse the repository at this point in the history
  • Loading branch information
sampsyo committed Dec 22, 2016
1 parent 3528a67 commit 8cc2ac5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions beets/mediafile.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,6 @@ def __init__(self, key, involvement='', **kwargs):

def store(self, mutagen_file, value):
frames = mutagen_file.tags.getall(self.key)
print(frames)

# Try modifying in place.
found = False
Expand All @@ -778,7 +777,6 @@ def store(self, mutagen_file, value):
encoding=mutagen.id3.Encoding.UTF8,
people=[[self.involvement, value]]
)
print(frame)
mutagen_file.tags.add(frame)

def fetch(self, mutagen_file):
Expand Down

0 comments on commit 8cc2ac5

Please sign in to comment.