CreateContext has publish_attributes

This commit is contained in:
iLLiCiTiT 2021-09-02 14:50:15 +02:00
parent 6719a28836
commit 448b7641e4

View file

@ -452,6 +452,7 @@ class CreateContext:
self.dbcon = dbcon
self._log = None
self._publish_attributes = PublishAttributes(self, {})
self.host = host
host_is_valid = True
@ -480,6 +481,10 @@ class CreateContext:
if reset:
self.reset()
@property
def publish_attributes(self):
return self._publish_attributes
@classmethod
def get_host_misssing_methods(cls, host):
missing = set()