Your message dated Mon, 25 Jun 2007 22:17:03 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#429063: fixed in quodlibet-plugins 20070625-1
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: quodlibet-plugins
Version: 20070529-1
originally found at: https://launchpad.net/ubuntu/+bug/120065
--
On pausing/unpausing and when changing tracks I get the following error
(lines and affected functions differ on every event)
Traceback (most recent call last):
File "/usr/share/quodlibet/plugins/events.py", line 128, in __invoke
try: handler(*args)
File "/usr/share/quodlibet/plugins/events/gajim_status.py", line 92,
in plugin_on_unpaused
self.change_status(self.accounts, self.current)
File "/usr/share/quodlibet/plugins/events/gajim_status.py", line 73,
in change_status
for account in self.interface.list_accounts():
AttributeError: 'NoneType' object has no attribute 'list_accounts'
$ LC_ALL=C apt-cache policy quodlibet-plugins
quodlibet-plugins:
Installed: 20070529-1ubuntu1
Candidate: 20070529-1ubuntu1
Version table:
*** 20070529-1ubuntu1 0
500 http://archive.ubuntu.com gutsy/universe Packages
100 /var/lib/dpkg/status
$ LC_ALL=C apt-cache policy quodlibet
quodlibet:
Installed: 1.0-0ubuntu1
Candidate: 1.0-0ubuntu1
Version table:
*** 1.0-0ubuntu1 0
500 http://archive.ubuntu.com gutsy/universe Packages
100 /var/lib/dpkg/status
--
This should also affect debian since ubuntu made no changes to the gajim
plugin.
The attached patch should fix this issue.
--- quodlibet-plugins-20070529.orig/events/gajim_status.py
+++ quodlibet-plugins-20070529/events/gajim_status.py
@@ -82,14 +82,17 @@
self.current = Pattern(self.pattern) % song
else:
self.current = ''
- self.change_status(self.accounts, self.current)
+ if self.interface:
+ self.change_status(self.accounts, self.current)
def plugin_on_paused(self):
- if self.paused and self.current != '':
- self.change_status(self.accounts, self.current + " [paused]")
+ if self.interface:
+ if self.paused and self.current != '':
+ self.change_status(self.accounts, self.current + " [paused]")
def plugin_on_unpaused(self):
- self.change_status(self.accounts, self.current)
+ if self.interface:
+ self.change_status(self.accounts, self.current)
def accounts_changed(self, entry):
self.accounts = entry.get_text().split()
signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: quodlibet-plugins
Source-Version: 20070625-1
We believe that the bug you reported is fixed in the latest version of
quodlibet-plugins, which is due to be installed in the Debian FTP archive:
quodlibet-plugins_20070625-1.diff.gz
to pool/main/q/quodlibet-plugins/quodlibet-plugins_20070625-1.diff.gz
quodlibet-plugins_20070625-1.dsc
to pool/main/q/quodlibet-plugins/quodlibet-plugins_20070625-1.dsc
quodlibet-plugins_20070625-1_all.deb
to pool/main/q/quodlibet-plugins/quodlibet-plugins_20070625-1_all.deb
quodlibet-plugins_20070625.orig.tar.gz
to pool/main/q/quodlibet-plugins/quodlibet-plugins_20070625.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Christine Spang <[EMAIL PROTECTED]> (supplier of updated quodlibet-plugins
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Mon, 25 Jun 2007 17:22:24 -0400
Source: quodlibet-plugins
Binary: quodlibet-plugins
Architecture: source all
Version: 20070625-1
Distribution: unstable
Urgency: low
Maintainer: Christine Spang <[EMAIL PROTECTED]>
Changed-By: Christine Spang <[EMAIL PROTECTED]>
Description:
quodlibet-plugins - various contributed plugins for Quod Libet
Closes: 429063
Changes:
quodlibet-plugins (20070625-1) unstable; urgency=low
.
* New upstream svn snapshot.
- Gajim plugin bugfixes. (Closes: #429063)
Files:
aae850d42f24715379a9af1d7b6f7957 646 sound extra
quodlibet-plugins_20070625-1.dsc
82930a93088f216bec6566add84b080d 44587 sound extra
quodlibet-plugins_20070625.orig.tar.gz
3092f70e603eaa9e92ce10de5f5a5620 3555 sound extra
quodlibet-plugins_20070625-1.diff.gz
412e33d7ce3f717e86c9dc1ee1c77a54 47408 sound extra
quodlibet-plugins_20070625-1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFGgDvcd73XuVITgboRAmK9AJ9omT4MoZCxCX7uOxDKnCOG0ShxYwCePnPG
czFnPy5zRHwcJP0iLG5xCq0=
=Fb8f
-----END PGP SIGNATURE-----
--- End Message ---