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 378c7881fe8cced2a2202373d5674ca8067d73e2
Author: Gusti Ridhoni Syahputera <syahputera.d...@gmail.com>
Date:   Sun Dec 22 20:02:35 2019 +0800

    Fix float parsing error (bug #16295)
    
    Signed-off-by: Sean Davis <smd.seanda...@gmail.com>
---
 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 7a102be..585ae69 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 float(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)

-- 
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