Skip to content

Commit f9e9d58

Browse files
author
Phil Elson
committed
.
1 parent 2b44037 commit f9e9d58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/ticker.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -810,8 +810,8 @@ def raise_if_exceeds(self, locs):
810810
'raise a RuntimeError if Locator attempts to create more than MAXTICKS locs'
811811
if len(locs)>=self.MAXTICKS:
812812
raise RuntimeError(('Locator attempting to generate %d ticks from '
813-
'%s to %s: exceeds Locator.MAXTICKS' %
814-
(len(locs), locs[0], locs[-1])))
813+
'%s to %s: exceeds Locator.MAXTICKS') %
814+
(len(locs), locs[0], locs[-1]))
815815

816816
return locs
817817

0 commit comments

Comments
 (0)