This is an automated email from the git hooks/post-receive script.

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit 37b9637379f30f9d4ae7bc06482f551f6760721b
Author: Sean Davis <smd.seanda...@gmail.com>
Date:   Wed Jan 15 06:44:49 2020 -0500

    Fix decimal properties when running through atof
---
 src/xfce4-screensaver-configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xfce4-screensaver-configure b/src/xfce4-screensaver-configure
index f0af794..b5723f0 100755
--- a/src/xfce4-screensaver-configure
+++ b/src/xfce4-screensaver-configure
@@ -80,7 +80,7 @@ class XfconfChannel:
         return self._set_property("bool", prop, value)
 
     def get_double(self, prop, default):
-        return locale.atof(self._get_property(prop, default))
+        return locale.atof(str(self._get_property(prop, default)))
 
     def set_double(self, prop, value):
         return self._set_property("double", prop, value)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to