diff options
author | mathieui <mathieui@mathieui.net> | 2014-12-07 20:09:15 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-12-07 20:09:15 +0100 |
commit | 93f05f04d708a580c3ecf49aa430e2830c319268 (patch) | |
tree | e33b2bd9619a0a85a6f27aa7a812a490fb14e8a8 /src/core | |
parent | 8c63e26335706ff938c425c8ec7efb82635b1d69 (diff) | |
download | poezio-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')
-rw-r--r-- | src/core/commands.py | 2 |
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 \ |