[Numpy-svn] r4830 - trunk/numpy/lib

numpy-svn at scipy.org numpy-svn at scipy.org
Thu Feb 28 01:31:58 EST 2008


Author: rkern
Date: 2008-02-28 00:31:48 -0600 (Thu, 28 Feb 2008)
New Revision: 4830

Modified:
   trunk/numpy/lib/io.py
Log:
Typo.

Modified: trunk/numpy/lib/io.py
===================================================================
--- trunk/numpy/lib/io.py	2008-02-27 23:53:39 UTC (rev 4829)
+++ trunk/numpy/lib/io.py	2008-02-28 06:31:48 UTC (rev 4830)
@@ -295,7 +295,7 @@
         if i<skiprows: continue
         comment_start = line.find(comments)
         if comment_start > 0:
-            line = line[:comments_start].strip()
+            line = line[:comment_start].strip()
         else:
             line = line.strip()
         if not len(line): continue




More information about the Numpy-svn mailing list