diff sat/plugins/plugin_xep_0313.py @ 2763:c4190d5340ab

XEP-0059: max value check: check that max is not negative, this is to spot the accidental use of C.NO_LIMIT for max
author Goffi <goffi@goffi.org>
date Fri, 11 Jan 2019 09:48:19 +0100
parents 3480d4fdf83a
children 003b8b4b56a7
line wrap: on
line diff
--- a/sat/plugins/plugin_xep_0313.py	Fri Jan 11 09:48:17 2019 +0100
+++ b/sat/plugins/plugin_xep_0313.py	Fri Jan 11 09:48:19 2019 +0100
@@ -143,7 +143,7 @@
 
         for name, value in extra.iteritems():
             if name.startswith(FILTER_PREFIX):
-                var = name[len(FILTER_PREFIX) :]
+                var = name[len(FILTER_PREFIX):]
                 extra_fields = form_args.setdefault(u"extra_fields", [])
                 extra_fields.append(data_form.Field(var=var, value=value))