Compare commits

..

No commits in common. "3b72988cb546dfef8484dd95262f342abc8ed49a" and "80b1155d2a4af7939c6bb747e874833147c45944" have entirely different histories.

3 changed files with 2 additions and 10 deletions

View file

@ -1,9 +1,3 @@
## 0.1.0a13 (2025-02-19)
### Fix
- MOCK
## 0.1.0a12 (2025-02-19)
### Fix

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail.user_data_bitwarden"
version = "0.1.0a13"
version = "0.1.0a12"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "Rougail user_data Bitwarden"

View file

@ -158,9 +158,7 @@ class RougailUserDataBitwarden:
self.errors.append(_('the default value for "{0}" must be the Bitwarden item name').format(path))
return None, None
if 'ROUGAIL_BITWARDEN_MOCK_ENABLE' in environ:
if allow_multiple:
return ['example_login'], ['Ex4mpL3_P4ssw0rD']
return 'example_login', 'Ex4mpL3_P4ssw0rD'
return ['example_login'], 'Ex4mpL3_P4ssw0rD'
try:
data = self.get_key_from_commandline(key_bitwarden, allow_multiple)
except Exception as exc: