Skip to content
Snippets Groups Projects
Commit 1f32723a authored by Sean Davis's avatar Sean Davis
Browse files

Revert "Fix decimal properties when running through atof"

This reverts commit 37b96373.
parent 83295d76
No related branches found
No related tags found
1 merge request!9Use GIRepository of libxfce4util and xfconf
......@@ -80,7 +80,7 @@ class XfconfChannel:
return self._set_property("bool", prop, value)
def get_double(self, prop, default):
return locale.atof(str(self._get_property(prop, default)))
return locale.atof(self._get_property(prop, default))
def set_double(self, prop, value):
return self._set_property("double", prop, value)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment