From 6013b8a20a07f8c297ee2042fadaf921b2d93971 Mon Sep 17 00:00:00 2001 From: Simon Schampijer Date: Mon, 13 Oct 2008 16:53:30 +0200 Subject: [PATCH] Fix for old profile conversion --- src/sugar/profile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sugar/profile.py b/src/sugar/profile.py index 301903f6..2d5a88e6 100644 --- a/src/sugar/profile.py +++ b/src/sugar/profile.py @@ -154,8 +154,8 @@ class Profile(object): backup1 = cp.get('Server', 'Backup1') client.set_string("/desktop/sugar/backup_url", backup1) if cp.has_option('Sound', 'Volume'): - volume = int(cp.get('Sound', 'Volume')) - client.set_int("/desktop/sugar/sound/volume", volume) + volume = float(cp.get('Sound', 'Volume')) + client.set_int("/desktop/sugar/sound/volume", int(volume)) if cp.has_option('Power', 'AutomaticPM'): state = cp.get('Power', 'AutomaticPM') if state.lower() == "true":