Author: tlinnet Date: Sat Jun 13 14:08:44 2015 New Revision: 27850 URL: http://svn.gna.org/viewcvs/relax?rev=27850&view=rev Log: Fix committed, where an empty spin placeholder has the select flag set to False.
Bug #23642 (https://gna.org/bugs/index.php?23642): When deleting all spins for a residue, an empty placeholder is where select=True Modified: trunk/pipe_control/mol_res_spin.py Modified: trunk/pipe_control/mol_res_spin.py URL: http://svn.gna.org/viewcvs/relax/trunk/pipe_control/mol_res_spin.py?rev=27850&r1=27849&r2=27850&view=diff ============================================================================== --- trunk/pipe_control/mol_res_spin.py (original) +++ trunk/pipe_control/mol_res_spin.py Sat Jun 13 14:08:44 2015 @@ -1072,7 +1072,7 @@ # Create an empty spin container if no spins remain. if len(res.spin) == 0: - res.spin.add_item() + res.spin.add_item(select=False) # Update all metadata. metadata_update() _______________________________________________ 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

