mailr26541 - /trunk/auto_analyses/dauvergne_protocol.py


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

Header


Content

Posted by edward on November 12, 2014 - 10:51:
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)
 




Related Messages


Powered by MHonArc, Updated Wed Nov 12 11:00:02 2014