Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b282fd2d7a | |||
| fb230276a8 |
4 changed files with 10 additions and 4 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.1.0a15 (2025-11-21)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- ExtentionError => ExtensionError
|
||||||
|
|
||||||
## 0.1.0a14 (2025-11-06)
|
## 0.1.0a14 (2025-11-06)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.user_data_environment"
|
name = "rougail.user_data_environment"
|
||||||
version = "0.1.0a14"
|
version = "0.1.0a15"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail user_data environment"
|
description = "Rougail user_data environment"
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.1.0a14"
|
__version__ = "0.1.0a15"
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
import os
|
import os
|
||||||
from rougail.tiramisu import CONVERT_OPTION
|
from rougail.tiramisu import CONVERT_OPTION
|
||||||
from rougail.config import RougailConfig
|
from rougail.config import RougailConfig
|
||||||
from rougail.error import ExtentionError
|
from rougail.error import ExtensionError
|
||||||
from tiramisu.error import ValueOptionError
|
from tiramisu.error import ValueOptionError
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -43,7 +43,7 @@ class RougailUserDataEnvironment:
|
||||||
rougailconfig["step.user_data"] = user_data
|
rougailconfig["step.user_data"] = user_data
|
||||||
user_data = rougailconfig["step.user_data"]
|
user_data = rougailconfig["step.user_data"]
|
||||||
if "environment" not in user_data:
|
if "environment" not in user_data:
|
||||||
raise ExtentionError("environment is not set in step.user_data")
|
raise ExtensionError("environment is not set in step.user_data")
|
||||||
if "environment.with_secrets" in rougailconfig:
|
if "environment.with_secrets" in rougailconfig:
|
||||||
self.with_secrets = rougailconfig["environment.with_secrets"]
|
self.with_secrets = rougailconfig["environment.with_secrets"]
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue