developer import from sourceforge

This commit is contained in:
Trilarion
2021-01-06 16:13:17 +01:00
parent 489adf0f88
commit 32ae77c7da
99 changed files with 2873 additions and 189 deletions

View File

@ -21,11 +21,11 @@ class ListingTransformer(lark.Transformer):
def property(self, x):
"""
The key of a property will be converted to lower case and the value part is the second part
Key is first part, values are following.
:param x:
:return:
"""
return x[0], x[1:]
return x[0].value, x[1:]
def name(self, x):
"""