Compare commits

..

No commits in common. "33835d0947b3edf4faa5673550c9af5919556f98" and "601f84277223ebf5afaf3ad7b7996d494937fafd" have entirely different histories.

4 changed files with 4 additions and 11 deletions

View file

@ -1,10 +1,3 @@
## 0.2.0a15 (2025-12-22)
### Fix
- add namespace parameter for ansible
- better namespace support
## 0.2.0a14 (2025-11-21) ## 0.2.0a14 (2025-11-21)
### Fix ### Fix

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project] [project]
name = "rougail.output_json" name = "rougail.output_json"
version = "0.2.0a15" version = "0.2.0a14"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}] authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md" readme = "README.md"
description = "Rougail output json" description = "Rougail output json"

View file

@ -168,9 +168,9 @@ class RougailOutputJson:
self.parse_family(option, parent, subnamespace) self.parse_family(option, parent, subnamespace)
child[option.name()] = parent child[option.name()] = parent
else: else:
self.parse_variable(option, child, namespace) self.parse_variable(option, child)
def parse_variable(self, option, child, namespace): def parse_variable(self, option, child):
child[option.name()] = option.value.get() child[option.name()] = option.value.get()
def parse_leadership( def parse_leadership(

View file

@ -1 +1 @@
__version__ = "0.2.0a15" __version__ = "0.2.0a14"