Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/activity.py b/activity.py
index 01c6cd1..3845c96 100644
--- a/activity.py
+++ b/activity.py
@@ -191,7 +191,7 @@ class ConvertActivity(activity.Activity):
self._call()
def update_label_info(self, util=None, to_util=None):
- value = self.dic[util][0] * self.dic[to_util][1]
+ value = 1 * self.dic[util] / self.dic[to_util]
self.label_info.set_text(' Convert: \n %s x %s = %s' % (str(util),
str(value), str(to_util)))