--- a/PluginManager/PluginInstallDialog.py Fri Mar 07 19:20:36 2014 +0100 +++ b/PluginManager/PluginInstallDialog.py Sat Mar 08 20:09:41 2014 +0100 @@ -580,8 +580,8 @@ self.resize(size) self.setWindowTitle(self.cw.windowTitle()) - self.cw.buttonBox.accepted[()].connect(self.accept) - self.cw.buttonBox.rejected[()].connect(self.reject) + self.cw.buttonBox.accepted.connect(self.accept) + self.cw.buttonBox.rejected.connect(self.reject) def restartNeeded(self): """ @@ -614,5 +614,5 @@ self.setStyle(Preferences.getUI("Style"), Preferences.getUI("StyleSheet")) - self.cw.buttonBox.accepted[()].connect(self.close) - self.cw.buttonBox.rejected[()].connect(self.close) + self.cw.buttonBox.accepted.connect(self.close) + self.cw.buttonBox.rejected.connect(self.close)