Revision: 3788
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3788&view=rev
Author:   jdh2358
Date:     2007-09-05 08:23:29 -0700 (Wed, 05 Sep 2007)

Log Message:
-----------
fixed a load numpification bug

Modified Paths:
--------------
    trunk/matplotlib/lib/matplotlib/mlab.py

Modified: trunk/matplotlib/lib/matplotlib/mlab.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/mlab.py     2007-09-05 15:23:09 UTC (rev 
3787)
+++ trunk/matplotlib/lib/matplotlib/mlab.py     2007-09-05 15:23:29 UTC (rev 
3788)
@@ -1252,7 +1252,7 @@
     r,c = X.shape
     if r==1 or c==1:
         X.shape = max(r,c),
-    if unpack: X.transpose()
+    if unpack: return X.transpose()
     return X
 
 def csv2rec(fname, comments='#', skiprows=0, checkrows=5, delimiter=',',


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to