Changes between Initial Version and Version 1 of Ticket #12913, comment 1
- Timestamp:
- Sep 11, 2017, 6:00:13 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12913, comment 1
initial v1 3 3 {{{#!diff 4 4 diff --git a/tracopt/perm/authz_policy.py b/tracopt/perm/authz_policy.py 5 index d8c1ba9ef.. 0ec4a0b8d1006445 index d8c1ba9ef..7bd4921ee 100644 6 6 --- a/tracopt/perm/authz_policy.py 7 7 +++ b/tracopt/perm/authz_policy.py 8 @@ -204,1 2 +204,15@@ class AuthzPolicy(Component):8 @@ -204,17 +204,19 @@ class AuthzPolicy(Component): 9 9 for group, users in groups.iteritems(): 10 10 add_items('@' + group, users) … … 23 23 self.log.warning("The action %s in the [%s] section " 24 24 "of %s is not a valid action.", 25 - action, section, 26 - os.path.basename(self.authz_file)) 27 + action, section, authz_basename) 28 29 def normalise_resource(self, resource): 30 def to_descriptor(resource): 25 31 }}} 26 32