Compare commits

..

No commits in common. "495b54dd0f1a3241047283ab1e561f4aef6271a0" and "1088164eed239adb52b0776f449fae51ff1ba0c1" have entirely different histories.

4 changed files with 3 additions and 9 deletions

View file

@ -1,9 +1,3 @@
## 0.1.0a24 (2025-10-16)
### Fix
- path is uncalculated
## 0.1.0a23 (2025-10-16) ## 0.1.0a23 (2025-10-16)
### Feat ### Feat

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project] [project]
name = "rougail.user_data_bitwarden" name = "rougail.user_data_bitwarden"
version = "0.1.0a24" version = "0.1.0a23"
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"

View file

@ -1 +1 @@
__version__ = "0.1.0a24" __version__ = "0.1.0a23"

View file

@ -130,7 +130,7 @@ class RougailUserDataBitwarden:
if option.isoptiondescription(): if option.isoptiondescription():
self.set_passwords(option, values) self.set_passwords(option, values)
elif option.information.get("bitwarden", False): elif option.information.get("bitwarden", False):
values[option.path(uncalculated=True)] = (set_password, self.leader_informations, self.bitwarden_command_line) values[option.path()] = (set_password, self.leader_informations, self.bitwarden_command_line)
def set_password(leader_informations, bitwarden_command_line, *, option, warnings, errors): def set_password(leader_informations, bitwarden_command_line, *, option, warnings, errors):