Compare commits
2 commits
6419cba45a
...
9f01a4ce15
| Author | SHA256 | Date | |
|---|---|---|---|
| 9f01a4ce15 | |||
| c98c06c7ff |
4 changed files with 10 additions and 4 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.1.0a3 (2025-11-21)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- ExtentionError => ExtensionError
|
||||||
|
|
||||||
## 0.1.0a2 (2025-11-06)
|
## 0.1.0a2 (2025-11-06)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.user_data_commandline"
|
name = "rougail.user_data_commandline"
|
||||||
version = "0.1.0a2"
|
version = "0.1.0a3"
|
||||||
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 Bitwarden"
|
description = "Rougail user_data Bitwarden"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from argparse import ArgumentError
|
from argparse import ArgumentError
|
||||||
from tiramisu_cmdline_parser import TiramisuCmdlineParser
|
from tiramisu_cmdline_parser import TiramisuCmdlineParser
|
||||||
from rougail.error import ExtentionError
|
from rougail.error import ExtensionError
|
||||||
|
|
||||||
from .i18n import _
|
from .i18n import _
|
||||||
from .__version__ import __version__
|
from .__version__ import __version__
|
||||||
|
|
@ -48,7 +48,7 @@ class RougailUserDataCommandline:
|
||||||
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 "commandline" not in user_data:
|
if "commandline" not in user_data:
|
||||||
raise ExtentionError(_('"commandline" is not set in step.user_data'))
|
raise ExtensionError(_('"commandline" is not set in step.user_data'))
|
||||||
self.rougailconfig = rougailconfig
|
self.rougailconfig = rougailconfig
|
||||||
self.arguments = arguments
|
self.arguments = arguments
|
||||||
self.errors = []
|
self.errors = []
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
__version__ = "0.1.0a2"
|
__version__ = "0.1.0a3"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue