comparison src/plugins/plugin_exp_command_export.py @ 1409:3265a2639182

massive (preventive) addition of 'u' (unicode) before the strings passed to logging functions
author souliane <souliane@mailoo.org>
date Thu, 16 Apr 2015 14:57:57 +0200
parents 069ad98b360d
children 22a8e770cb7b
comparison
equal deleted inserted replaced
1408:8a7145138330 1409:3265a2639182
140 - pty: if set, launch in a pseudo terminal 140 - pty: if set, launch in a pseudo terminal
141 - continue: continue normal MessageReceived handling 141 - continue: continue normal MessageReceived handling
142 """ 142 """
143 profile = self.host.memory.getProfileName(profile_key) 143 profile = self.host.memory.getProfileName(profile_key)
144 if not profile: 144 if not profile:
145 log.warning("Unknown profile [%s]" % (profile,)) 145 log.warning(u"Unknown profile [%s]" % (profile,))
146 return 146 return
147 147
148 for target in targets: 148 for target in targets:
149 try: 149 try:
150 _jid = jid.JID(target) 150 _jid = jid.JID(target)