Skip to content

Commit d0b08a1

Browse files
committed
remote/exporter: ser2net YAML config since 4.2.0
Contrary to the code, ser2net started using the YAML configuration in version 4.2.0, correct the exporter version check. Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de>
1 parent 7282541 commit d0b08a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

labgrid/remote/exporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def _start(self, start_params):
242242
if version not in [(4, 4, 0), (4, 5, 0), (4, 5, 1), (4, 6, 0), (4, 6, 1)] and result.returncode == 1:
243243
raise ExporterError(f"ser2net {version} returned a nonzero code during version check.")
244244

245-
if version >= (4, 0, 0):
245+
if version >= (4, 2, 0):
246246
cmd = [
247247
self.ser2net_bin,
248248
"-d",

0 commit comments

Comments
 (0)