--- moin-1.8.2/MoinMoin/config/multiconfig.py	2009-01-23 23:39:19.000000000 -0500
+++ moin-1.8.2/MoinMoin/config/multiconfig.py	2009-04-27 09:21:47.000000000 -0400
@@ -535,7 +535,6 @@
         Both data and underlay should exists and allow read, write and
         execute.
         """
-        mode = os.F_OK | os.R_OK | os.W_OK | os.X_OK
         for attr in ('data_dir', 'data_underlay_dir'):
             path = getattr(self, attr)
 
@@ -544,7 +543,7 @@
                 continue
 
             path_pages = os.path.join(path, "pages")
-            if not (os.path.isdir(path_pages) and os.access(path_pages, mode)):
+            if not os.path.isdir(path_pages):
                 msg = """
 %(attr)s "%(path)s" does not exist, or has incorrect ownership or
 permissions.
