Browse Source

Fix sparktext Python3...

pull/39/head
Florian Mounier 12 years ago
parent
commit
26178bff1b
  1. 2
      pygal/ghost.py

2
pygal/ghost.py

@ -122,7 +122,7 @@ class Ghost(object):
return u('')
chart = u('')
values = map(lambda x: max(x, 0), values)
values = list(map(lambda x: max(x, 0), values))
vmax = max(values)
if relative_to is None:

Loading…
Cancel
Save