Description of problem: Component: system-config-kickstart Summary: TBa3421c35 securitylevel.py:576:checkDirty:AttributeError: FirewallWindow instance has no attribute 'applyButton' Traceback (most recent call last): File "/usr/share/system-config-securitylevel/securitylevel.py", line 273, in security_changed_cb self.none_activated() File "/usr/share/system-config-securitylevel/securitylevel.py", line 214, in none_activated self.setDirty(True) File "/usr/share/system-config-securitylevel/securitylevel.py", line 570, in setDirty self.checkDirty() File "/usr/share/system-config-securitylevel/securitylevel.py", line 576, in checkDirty self.applyButton.set_sensitive(True) AttributeError: FirewallWindow instance has no attribute 'applyButton' Local variables in innermost frame: self: <firewall.FirewallWindow instance at 0x15a64d0> args: () Version-Release number of selected component (if applicable): system-config-kickstart-2.7.7-2.fc8
You're not guaranteed to always have an applyButton or okButton in securitylevel.py:childWindow. In instances where the dialog is wrapped in another window, these buttons will never have been pulled from the glade file. So in checkDirty, you probably want to add a block like this right at the beginning: if not self.applyButton or not self.okButton: continue
This needs a fix for F8t1. Anything we can do to help?
*** Bug 250051 has been marked as a duplicate of this bug. ***
Fixed in rawhide in package system-config-securitylevel-1.7.0-4.fc8.