New behavior, new tests, added wizzard and processor
Signed-off-by: Václav Valíček <valicek1994@gmail.com>
This commit is contained in:
@@ -97,8 +97,8 @@ class ClonerConfigParser:
|
||||
self.__invalid_lines.append((line, None))
|
||||
continue
|
||||
eq = line.find("=")
|
||||
key: str = line[0:eq]
|
||||
val: str = line[eq + 1:]
|
||||
key: str = line[0:eq].strip()
|
||||
val: str = line[eq + 1:].strip()
|
||||
l.debug(f"Found config pair: {key} => '{val}'")
|
||||
|
||||
try:
|
||||
@@ -118,4 +118,3 @@ class ClonerConfigParser:
|
||||
@property
|
||||
def invalid_lines(self):
|
||||
return self.__invalid_lines
|
||||
|
||||
|
||||
Reference in New Issue
Block a user