sanitized sub name
This commit is contained in:
parent
8998768b54
commit
267acf104a
1 changed files with 6 additions and 5 deletions
|
|
@ -175,11 +175,12 @@ class Overrides(DictFormatterValidator):
|
||||||
)
|
)
|
||||||
|
|
||||||
if SUBSCRIPTION_NAME not in self._value:
|
if SUBSCRIPTION_NAME not in self._value:
|
||||||
self._add_override_variable(
|
for sanitized in [True, False]:
|
||||||
key_name=SUBSCRIPTION_NAME,
|
self._add_override_variable(
|
||||||
format_string=self.subscription_name,
|
key_name=SUBSCRIPTION_NAME,
|
||||||
sanitize=True,
|
format_string=self.subscription_name,
|
||||||
)
|
sanitize=sanitized,
|
||||||
|
)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def subscription_name(self) -> str:
|
def subscription_name(self) -> str:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue