Changeset 9098
- Timestamp:
- 12/04/07 11:20:52 (12 months ago)
- Files:
-
- 1 modified
-
branches/pep/src/roster_window.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pep/src/roster_window.py
r8487 r9098 3681 3681 artist = music_track_info.artist 3682 3682 title = music_track_info.title 3683 status_message = '♪ ' + _('"%(title)s" by %(artist)s') % \ 3684 {'title': music_track_info.title, 3685 'artist': music_track_info.artist } + ' ♪' 3686 print "change (%s - %s) for %s" % (artist, title, account) 3683 source = music_track_info.album 3684 print "change (%s - %s - %s) for %s" % (artist, source, title, account) 3687 3685 if account == '': 3688 3686 print "Multi accounts" … … 3693 3691 if not gajim.connections[account].pep_supported: 3694 3692 continue 3695 pep.user_send_tune(account, artist, title, source = '')3693 pep.user_send_tune(account, artist, title, source) 3696 3694 else: 3697 3695 print "Single account" 3698 pep.user_send_tune(account, artist, title, source = '')3696 pep.user_send_tune(account, artist, title, source) 3699 3697 3700 3698
