Skip to content

Commit

Permalink
im-status: remove some useless encoding stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Matthew committed Apr 21, 2013
1 parent 53bdc5d commit 4ce2a9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/im-status/im-status.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ def set_status_from_entry (self):

def set_status (self):
subs = {
'artist': unicode (self.current_artist, encoding='utf-8'),
'album': unicode (self.current_album, encoding='utf-8'),
'title': unicode (self.current_title, encoding='utf-8')
'artist': self.current_artist,
'album': self.current_album,
'title': self.current_title
}
if self.current_artist:
if self.current_title:
Expand Down

0 comments on commit 4ce2a9d

Please sign in to comment.