Mercurial > libervia-backend
changeset 3533:4b33ed5abd8f
core (xmpp): fix typo in sendError
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 06 May 2021 18:10:09 +0200 |
parents | ab72b8ac3bd2 |
children | 1658472abd77 |
files | sat/core/xmpp.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/sat/core/xmpp.py Wed May 05 15:41:19 2021 +0200 +++ b/sat/core/xmpp.py Thu May 06 18:10:09 2021 +0200 @@ -540,7 +540,7 @@ @param condition(unicode): error condition """ iq_error_elt = error.StanzaError( - condition, text=text, appContidtion=appCondition + condition, text=text, appCondition=appCondition ).toResponse(iq_elt) self.xmlstream.send(iq_error_elt)