diff frontends/src/jp/jp @ 721:0077912bc9ba

jp: removed named argument for pipeOut, as it's not managed with dynamicaly added methods
author Goffi <goffi@goffi.org>
date Tue, 26 Nov 2013 18:30:35 +0100
parents 3954cb4d96a7
children bfabeedbf32e
line wrap: on
line diff
--- a/frontends/src/jp/jp	Sat Nov 23 13:38:05 2013 +0100
+++ b/frontends/src/jp/jp	Tue Nov 26 18:30:35 2013 +0100
@@ -273,7 +273,7 @@
         tmp_dir = tempfile.mkdtemp()
         fifopath = os.path.join(tmp_dir,"pipe_out")
         os.mkfifo(fifopath)
-        self.bridge.pipeOut(self._getFullJid(self.dest_jid), fifopath, {}, profile_key=self.profile)
+        self.bridge.pipeOut(self._getFullJid(self.dest_jid), fifopath, {}, self.profile)
         with open(fifopath, 'w') as f:
             shutil.copyfileobj(sys.stdin, f)
         shutil.rmtree(tmp_dir)