|
From: <md...@us...> - 2009-02-09 18:49:51
|
Revision: 6895
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6895&view=rev
Author: mdboom
Date: 2009-02-09 18:49:49 +0000 (Mon, 09 Feb 2009)
Log Message:
-----------
Very minor indentation fix.
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/axes.py
Modified: trunk/matplotlib/lib/matplotlib/axes.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/axes.py 2009-02-09 18:23:56 UTC (rev 6894)
+++ trunk/matplotlib/lib/matplotlib/axes.py 2009-02-09 18:49:49 UTC (rev 6895)
@@ -140,7 +140,8 @@
self.colors = _process_plot_var_args.defaultColors[:]
# if the default line color is a color format string, move it up
# in the que
- try: ind = self.colors.index(rcParams['lines.color'])
+ try:
+ ind = self.colors.index(rcParams['lines.color'])
except ValueError:
self.firstColor = rcParams['lines.color']
else:
@@ -7415,7 +7416,7 @@
return the tight bounding box of the axes.
The dimension of the Bbox in canvas coordinate.
"""
-
+
artists = []
bb = []
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|