Commit 76d15911 authored by Shane Hathaway's avatar Shane Hathaway

Removed the special case that prevents authentication from being attempted.

parent afffd789
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
# attributions are listed in the accompanying credits file. # attributions are listed in the accompanying credits file.
# #
############################################################################## ##############################################################################
__version__='$Revision: 1.38 $'[11:-2] __version__='$Revision: 1.39 $'[11:-2]
from string import join, split, find, rfind, lower, upper from string import join, split, find, rfind, lower, upper
from urllib import quote from urllib import quote
...@@ -404,7 +404,7 @@ class BaseRequest: ...@@ -404,7 +404,7 @@ class BaseRequest:
user=groups=None user=groups=None
i=0 i=0
if roles is not None: if 1: # Always perform authentication.
last_parent_index=len(parents) last_parent_index=len(parents)
if hasattr(object, '__allow_groups__'): if hasattr(object, '__allow_groups__'):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment