Fix OPTIONS requests

This commit is contained in:
Guillaume Ayoub 2012-08-09 14:29:44 +02:00
parent 4fa53d15b3
commit 3ddbb80674

View File

@ -236,7 +236,7 @@ class Application(object):
log.LOGGER.info("%s has NO access to item %s" % (
user, item.name or "/"))
if allowed_items:
if allowed_items or function == self.options:
# Collections found
status, headers, answer = function(
environ, allowed_items, content, user)