Author: bugman
Date: Wed Nov 12 10:51:25 2014
New Revision: 26541

URL: http://svn.gna.org/viewcvs/relax?rev=26541&view=rev
Log:
Removed the writable base directory check in the dauvergne_protocol 
auto-analysis.

This check was causing the system test to fail if the user does not have write 
access to the
installed relax directory.


Modified:
    trunk/auto_analyses/dauvergne_protocol.py

Modified: trunk/auto_analyses/dauvergne_protocol.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/auto_analyses/dauvergne_protocol.py?rev=26541&r1=26540&r2=26541&view=diff
==============================================================================
--- trunk/auto_analyses/dauvergne_protocol.py   (original)
+++ trunk/auto_analyses/dauvergne_protocol.py   Wed Nov 12 10:51:25 2014
@@ -520,8 +520,6 @@
         # Is the directory readable, writable, and executable.
         if not access(base_dir, R_OK):
             raise RelaxError("The base model directory '%s' is not readable." 
% base_dir)
-        if not access(base_dir, W_OK):
-            raise RelaxError("The base model directory '%s' is not writable." 
% base_dir)
         if not access(base_dir, X_OK):
             raise RelaxError("The base model directory '%s' is not 
executable." % base_dir)
 


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

This is the relax-commits mailing list
relax-commits@gna.org

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