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:


_______________________________________________
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
[email protected]

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits

Reply via email to