Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8635987

Browse files
committed
remove superfluous print
svn path=/trunk/matplotlib/; revision=931
1 parent f160a55 commit 8635987

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

lib/matplotlib/ticker.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -647,9 +647,8 @@ def autoscale(self):
647647
if minpos<0:
648648
raise RuntimeError('No positive data to plot')
649649
if vmin<0:
650-
print 'minpos', vmin, minpos
651650
vmin = minpos
652-
651+
653652
if not is_decade(vmin,self.base): vmin = decade_down(vmin,self.base)
654653
if not is_decade(vmax,self.base): vmax = decade_up(vmax,self.base)
655654
if vmin==vmax:

0 commit comments

Comments
 (0)