Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar
diff options
context:
space:
mode:
Diffstat (limited to 'src/sugar')
-rw-r--r--src/sugar/profile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sugar/profile.py b/src/sugar/profile.py
index 301903f..2d5a88e 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":