Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/chart.py
diff options
context:
space:
mode:
Diffstat (limited to 'chart.py')
-rw-r--r--chart.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/chart.py b/chart.py
index 1abc313..64503ac 100644
--- a/chart.py
+++ b/chart.py
@@ -20,6 +20,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+import logging
+
import sugarpycha.bar
import sugarpycha.line
import sugarpycha.pie
@@ -120,6 +122,7 @@ class Chart(GObject.GObject):
chart = sugarpycha.bar.VerticalBarChart(self.surface, self.options)
elif self.type == HORIZONTAL_BAR:
+ logging.debug(self.options)
chart = sugarpycha.bar.HorizontalBarChart(self.surface,
self.options)