Ticket #3 (closed defect: fixed)

Opened 4 years ago

Last modified 3 years ago

"AttributeError: y" (tiny bug in chart.py)

Reported by: anonymous Owned by: somebody
Priority: trivial Milestone:
Component: component1 Version:
Keywords: Cc:

Description

Index: src/chart.py
===================================================================
--- src/chart.py	(revision 69)
+++ src/chart.py	(working copy)
@@ -224,7 +224,7 @@
         # evaluate yTicks
         self.yticks = []
         if self.options.axis.y.ticks:
-            for tick in self.options.y.ticks:
+            for tick in self.options.axis.y.ticks:
                 if not isinstance(tick, Option):
                     tick = Option(tick)
                 if tick.label is None:

Change History

Changed 4 years ago by lgs

  • status changed from new to closed
  • resolution set to fixed

Thanks for the report and patch whoever you are!

Fixed in [70]

Note: See TracTickets for help on using tickets.