mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 16:10:02 -06:00
Unaccessible variable self.attrs in Tracker
In tracker, 'self.attrs' variable is created and filled in track_create method. Some objects are not created but still require access to this variable. Created 'self.attrs' variable in init https://fedorahosted.org/freeipa/ticket/6125 Reviewed-By: Milan Kubik <mkubik@redhat.com>
This commit is contained in:
parent
d650c54fe4
commit
9b0b970733
@ -76,6 +76,7 @@ class Tracker(object):
|
||||
self.api = api
|
||||
self.default_version = default_version or API_VERSION
|
||||
self._dn = None
|
||||
self.attrs = {}
|
||||
|
||||
self.exists = False
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user