mailr27797 - /trunk/lib/sequence.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on March 10, 2015 - 09:50:
Author: bugman
Date: Tue Mar 10 09:50:16 2015
New Revision: 27797

URL: http://svn.gna.org/viewcvs/relax?rev=27797&view=rev
Log:
Fix for bug #23372 (https://gna.org/bugs/?23372), the sequence.read failure 
with CSV files.

The problem was that the sep argument was not being passed all the way to the 
backend
lib.io.extract_data() function.


Modified:
    trunk/lib/sequence.py

Modified: trunk/lib/sequence.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/lib/sequence.py?rev=27797&r1=27796&r2=27797&view=diff
==============================================================================
--- trunk/lib/sequence.py       (original)
+++ trunk/lib/sequence.py       Tue Mar 10 09:50:16 2015
@@ -222,7 +222,7 @@
     # Extract the data from the file.
     if not file_data:
         # Extract.
-        file_data = extract_data(file, dir)
+        file_data = extract_data(file, dir, sep=sep)
 
         # Strip the data of all comments and empty lines.
         if spin_id_col != None:




Related Messages


Powered by MHonArc, Updated Tue Mar 10 10:00:02 2015