comparison src/plugins/plugin_exp_command_export.py @ 2258:074c2f157dc9

plugin XEP-0054: fixed not transmitted arguments in getAvatar
author Goffi <goffi@goffi.org>
date Sat, 03 Jun 2017 22:24:53 +0200
parents 33c8c4973743
children 8b37a62336c3
comparison
equal deleted inserted replaced
2257:0ffa8ba0857c 2258:074c2f157dc9
152 log.info(u"invalid target ignored: %s" % (target,)) 152 log.info(u"invalid target ignored: %s" % (target,))
153 continue 153 continue
154 process_prot = ExportCommandProtocol(self, client, _jid, options) 154 process_prot = ExportCommandProtocol(self, client, _jid, options)
155 self.spawned.setdefault((_jid, client.profile),set()).add(process_prot) 155 self.spawned.setdefault((_jid, client.profile),set()).add(process_prot)
156 reactor.spawnProcess(process_prot, command, args, usePTY = process_prot.boolOption('pty')) 156 reactor.spawnProcess(process_prot, command, args, usePTY = process_prot.boolOption('pty'))
157