Author: bugman Date: Mon Oct 6 16:35:18 2014 New Revision: 26165 URL: http://svn.gna.org/viewcvs/relax?rev=26165&view=rev Log: Fix for the pipe_control.exp_info.bmrb_write_software() function.
This was broken back at r26071 (http://article.gmane.org/gmane.science.nmr.relax.scm/23822). The variable name change of software.name to software.software_name was not applied to the pipe_control.exp_info module. This caused a few of the Bmrb system tests to fail. Modified: trunk/pipe_control/exp_info.py Modified: trunk/pipe_control/exp_info.py URL: http://svn.gna.org/viewcvs/relax/trunk/pipe_control/exp_info.py?rev=26165&r1=26164&r2=26165&view=diff ============================================================================== --- trunk/pipe_control/exp_info.py (original) +++ trunk/pipe_control/exp_info.py Mon Oct 6 16:35:18 2014 @@ -157,11 +157,11 @@ cite_id_nums.append(cdp.exp_info.get_cite_id_num(cite)) # The program info. - id = star.software.add(name=software.name, version=software.version, vendor_name=software.vendor_name, vendor_eaddress=software.url, task=software.tasks, cite_ids=cite_id_nums) + id = star.software.add(name=software.software_name, version=software.version, vendor_name=software.vendor_name, vendor_eaddress=software.url, task=software.tasks, cite_ids=cite_id_nums) # Append the software info. software_ids.append(id) - software_labels.append(software.name) + software_labels.append(software.software_name) # relax cannot be the only program used! else: _______________________________________________ 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

