diff src/plugins/plugin_xep_0100.py @ 916:1a759096ccbd

core: use of Const for profile_key + replaced '@DEFAULT@' default profile_key by '@NONE@'
author Goffi <goffi@goffi.org>
date Fri, 21 Mar 2014 16:27:09 +0100
parents 1fe00f0c9a91
children c6d8fc63b1db
line wrap: on
line diff
--- a/src/plugins/plugin_xep_0100.py	Fri Mar 21 16:19:46 2014 +0100
+++ b/src/plugins/plugin_xep_0100.py	Fri Mar 21 16:27:09 2014 +0100
@@ -18,6 +18,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 from sat.core.i18n import _, D_
+from sat.core.constants import Const as C
 from sat.core import exceptions
 from sat.tools import xml_tools
 from logging import debug, info, warning, error
@@ -137,12 +138,12 @@
         self.host.addContact(jid_, profile_key=profile)
         self.host.setPresence(jid_, profile_key=profile)
 
-    def _gatewayRegister(self, target_jid_s, profile_key='@NONE@'):
+    def _gatewayRegister(self, target_jid_s, profile_key=C.PROF_KEY_NONE):
         d = self.gatewayRegister(jid.JID(target_jid_s), profile_key)
         d.addCallback(lambda xmlui: xmlui.toXml())
         return d
 
-    def gatewayRegister(self, target_jid, profile_key='@NONE@'):
+    def gatewayRegister(self, target_jid, profile_key=C.PROF_KEY_NONE):
         """Register gateway using in-band registration, then log-in to gateway"""
         profile = self.host.memory.getProfileName(profile_key)
         assert(profile)