summaryrefslogtreecommitdiff
path: root/src/core/commands.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-12-07 20:09:15 +0100
committermathieui <mathieui@mathieui.net>2014-12-07 20:09:15 +0100
commit93f05f04d708a580c3ecf49aa430e2830c319268 (patch)
treee33b2bd9619a0a85a6f27aa7a812a490fb14e8a8 /src/core/commands.py
parent8c63e26335706ff938c425c8ec7efb82635b1d69 (diff)
downloadpoezio-93f05f04d708a580c3ecf49aa430e2830c319268.tar.gz
poezio-93f05f04d708a580c3ecf49aa430e2830c319268.tar.bz2
poezio-93f05f04d708a580c3ecf49aa430e2830c319268.tar.xz
poezio-93f05f04d708a580c3ecf49aa430e2830c319268.zip
Fix the rawxml command (3/78)
Diffstat (limited to 'src/core/commands.py')
-rw-r--r--src/core/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/commands.py b/src/core/commands.py
index ca77501e..715e213e 100644
--- a/src/core/commands.py
+++ b/src/core/commands.py
@@ -917,7 +917,7 @@ def command_rawxml(self, args):
if not args:
return
- stanza = args[0]
+ stanza = args
try:
stanza = StanzaBase(self.xmpp, xml=ET.fromstring(stanza))
if stanza.xml.tag == 'iq' and \