From: Ed Page Date: Sat, 3 Oct 2009 20:28:50 +0000 (-0500) Subject: Along with previous commit, fixing the name of some class variables X-Git-Url: http://git.maemo.org/git/?p=theonering;a=commitdiff_plain;h=7cf2d153dde249c72e3939799f67dffe9f8fc1df Along with previous commit, fixing the name of some class variables --- diff --git a/src/connection_manager.py b/src/connection_manager.py index e10f520..50f15f7 100644 --- a/src/connection_manager.py +++ b/src/connection_manager.py @@ -30,9 +30,9 @@ class TheOneRingConnectionManager(telepathy.server.ConnectionManager): result = [] ConnectionClass = self._protos[proto] - mandatoryParameters = ConnectionClass.MANDATORY_PARAMETERS - optionalParameters = ConnectionClass.OPTIONAL_PARAMETERS - defaultParameters = ConnectionClass.PARAMETER_DEFAULTS + mandatoryParameters = ConnectionClass._mandatory_parameters + optionalParameters = ConnectionClass._optional_parameters + defaultParameters = ConnectionClass._parameter_defaults for parameterName, parameterType in mandatoryParameters.iteritems(): flags = telepathy.CONN_MGR_PARAM_FLAG_REQUIRED