Skip to content

Commit

Permalink
Fix TimerBase call to non-existent method.
Browse files Browse the repository at this point in the history
  • Loading branch information
dopplershift committed Jul 20, 2012
1 parent 1ee7e7b commit 28514ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/backend_bases.py
Expand Up @@ -1042,7 +1042,7 @@ def start(self, interval=None):
to reset the timer interval first if provided.
'''
if interval is not None:
self.set_interval(interval)
self._set_interval(interval)
self._timer_start()

def stop(self):
Expand Down

0 comments on commit 28514ca

Please sign in to comment.