Revision bb4eafc6 pithos/backends/lib/sqlalchemy/permissions.py

b/pithos/backends/lib/sqlalchemy/permissions.py
79 79
    def access_check(self, path, access, member):
80 80
        """Return true if the member has this access to the path."""
81 81
        
82
        if access == READ and self.public_check(path):
82
        if access == READ and self.public_get(path) is not None:
83 83
            return True
84 84
        
85 85
        r = self.xfeature_inherit(path)

Also available in: Unified diff