# HG changeset patch
# User Goffi <goffi@goffi.org>
# Date 1620317409 -7200
# Node ID 4b33ed5abd8fe1934497055604bf4dc80cca02ae
# Parent  ab72b8ac3bd29e6bdf1c288c8b4844f96f0c0f77
core (xmpp): fix typo in sendError

diff -r ab72b8ac3bd2 -r 4b33ed5abd8f sat/core/xmpp.py
--- 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)