# HG changeset patch # User Goffi # Date 1408995143 -7200 # Node ID 90f82f4ee40503eb486fc6ae2ec5ba09cbc68451 # Parent adea30ca0b51c13092ae8ea74fbea34b6019c7f7 core (stdui): fixed forgotten parametter in getParamError diff -r adea30ca0b51 -r 90f82f4ee405 src/stdui/ui_profile_manager.py --- a/src/stdui/ui_profile_manager.py Mon Aug 25 17:21:04 2014 +0200 +++ b/src/stdui/ui_profile_manager.py Mon Aug 25 21:32:23 2014 +0200 @@ -18,7 +18,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -from sat.core.i18n import _, D_ +from sat.core.i18n import D_ from sat.core.constants import Const as C from sat.tools import xml_tools from sat.memory.crypto import PasswordHasher @@ -79,7 +79,7 @@ d.addErrback(self.getParamError) return d - def getParamError(self): + def getParamError(self, failure): _dialog = xml_tools.XMLUI('popup', title=D_('Error')) _dialog.addText(D_("Can't get profile parameter.")) return {'xmlui': _dialog.toXml()}