From 204b45edcc7cf080ec54b5deb74a1edd3828a4f7 Mon Sep 17 00:00:00 2001 From: Mike McLean Date: Mon, 14 Apr 2025 14:06:59 -0400 Subject: [PATCH] fix py2 test failure fix suggested by julian8628 --- tests/test_plugins/test_runroot_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plugins/test_runroot_builder.py b/tests/test_plugins/test_runroot_builder.py index e63af95f..8924840a 100644 --- a/tests/test_plugins/test_runroot_builder.py +++ b/tests/test_plugins/test_runroot_builder.py @@ -75,7 +75,7 @@ class FakeConfigParser(object): else: self.CONFIG = copy.deepcopy(config) - def read(self, path, encoding): + def read(self, path, encoding=None): return def sections(self):