~thisfred/autoqueue/trunk

« back to all changes in this revision

Viewing changes to quodlibet_autoqueue.py

  • Committer: Eric Casteleijn
  • Date: 2015-02-08 06:51:12 UTC
  • Revision ID: thisfred@gmail.com-20150208065112-k3u6424kguehtrnu
gaia miximize

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
    """Remove performer role from string."""
95
95
    if not artist.endswith(')'):
96
96
        return artist
97
 
    return artist.split('(')[0]
 
97
    return artist.split('(')[0].strip()
98
98
 
99
99
 
100
100
class Song(SongBase):