Not sure if it fits the description and errors originally in this bug.
However, I do see some issues on the plugins tab with mythbuntu-control-
centre 0.64.1 on recently upgraded Ubuntu 16.04 machine.  I can
reproduce it by clicking on the "Enable/Disable All MythTV Plugins"
CheckButton.

The error reported by apport is:

Traceback (most recent call last):
File "/usr/share/mythbuntu/plugins/python/plugins.py", line 133 in 
toggle_plugins
    if list[item].flags() & Gtk.SENSITIVE:
  AttributeError: 'CheckButton' object has no attribute 'flags'

Seems that the code expects there to be a 'flags' attribute on the
object:

127     def toggle_plugins(self,widget):
128         if widget is not None:
129             if widget.get_name() == 'selectall_plugins_checkbox':
130                 toggle=widget.get_active()
131                 for list in get_frontend_plugin_dictionary(self), 
get_backend_plugin_dictionary(self):
132                     for item in list:
133                         if list[item].flags() & Gtk.SENSITIVE:
134                             list[item].set_active(toggle)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1310359

Title:
  MythBuntu Control Center Plugins Tab Issue

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mythbuntu-control-centre/+bug/1310359/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to