Skip to content

Commit

Permalink
Fix one more relative import.
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Jan 22, 2017
1 parent d813774 commit 408fcb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AccessControl/SecurityManagement.py
Expand Up @@ -24,7 +24,7 @@ def getSecurityManager():
nobody = getattr(SpecialUsers, 'nobody', None)
if nobody is None:
# Initialize SpecialUsers by importing User.py.
import User
from . import User
nobody = SpecialUsers.nobody
manager = SecurityManager(thread_id, SecurityContext(nobody))
_managers[thread_id]=manager
Expand Down

0 comments on commit 408fcb7

Please sign in to comment.