Philipp Hörist pushed to branch master at gajim / gajim


Commits:
bbec6ffe by lovetox at 2022-01-13T22:28:47+01:00
VariantMixin: Fix integer type

- - - - -


1 changed file:

- gajim/common/structs.py


Changes:

=====================================
gajim/common/structs.py
=====================================
@@ -272,7 +272,7 @@ def _get_type_and_variant_string(self,
             return str, f'{variant_str}s'
 
         if 'int' in field_type:
-            return str, f'{variant_str}i'
+            return int, f'{variant_str}i'
 
         if 'bool' in field_type:
             return bool, f'{variant_str}b'



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/bbec6ffe44eb9e7f82098ab8809825f9b592004d

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/bbec6ffe44eb9e7f82098ab8809825f9b592004d
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to