Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorAgustin Zubiaga <aguz@sugarlabs.org>2012-03-11 20:15:09 (GMT)
committer Agustin Zubiaga <aguz@sugarlabs.org>2012-03-11 20:15:09 (GMT)
commit9f7bdfbf1646e27d90ba856a038dcdf1bcc080af (patch)
tree5fa55ce05f8507bb519f67f21dde2ed0c21f3d66 /activity.py
parent0a619725f06e77447a8577094df04e9e11468f7a (diff)
pylint and pep8 fixes
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/activity.py b/activity.py
index 8e943e9..07345fd 100644
--- a/activity.py
+++ b/activity.py
@@ -513,10 +513,10 @@ class SimpleGraph(activity.Activity):
chart_data = reader.get_chart_data()
- h, v = reader.get_labels_name()
+ horizontal, vertical = reader.get_labels_name()
- self.v_label.entry.set_text(h)
- self.h_label.entry.set_text(v)
+ self.v_label.entry.set_text(horizontal)
+ self.h_label.entry.set_text(vertical)
# Load the data
for row in chart_data: