##// END OF EJS Templates
fix(imports): fixed circular import problem
super-admin -
r5341:115837d2 tip default
parent child Browse files
Show More
@@ -22,7 +22,6 b' import datetime'
22 22 from zope.cachedescriptors.property import Lazy as LazyProperty
23 23
24 24 from rhodecode.lib.pyramid_utils import get_current_request
25 from rhodecode.lib.auth import AuthUser
26 25 from rhodecode.lib.utils2 import AttributeDict
27 26
28 27
@@ -74,6 +73,8 b' class RhodecodeEvent(object):'
74 73
75 74 @property
76 75 def actor(self):
76 from rhodecode.lib.auth import AuthUser
77
77 78 # if an explicit actor is specified, use this
78 79 if self._actor:
79 80 return self._actor
General Comments 0
You need to be logged in to leave comments. Login now