Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gajim
gajim
Commits
bbec6ffe
Commit
bbec6ffe
authored
Jan 13, 2022
by
Philipp Hörist
Browse files
VariantMixin: Fix integer type
parent
b0d561f5
Changes
1
Show whitespace changes
Inline
Side-by-side
gajim/common/structs.py
View file @
bbec6ffe
...
...
@@ -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'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment