Skip to content

Commit

Permalink
Fix the build.
Browse files Browse the repository at this point in the history
  • Loading branch information
onyxfish committed May 20, 2016
1 parent c365482 commit 8f84a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion leather/axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Axis(object):
"""
def __init__(self, ticks=None, tick_formatter=None, name=None):
self._ticks = ticks or theme.default_ticks
self._tick_formatter = tick_formatter or (lambda value, i, tick_count: value)
self._tick_formatter = tick_formatter or (lambda value, i, tick_count: six.text_type(value))
self._name = name

def _estimate_left_tick_width(self, scale):
Expand Down

0 comments on commit 8f84a23

Please sign in to comment.