From 7ef08419c7d0e83ad02da6b8a1f9fe600fcb24cb Mon Sep 17 00:00:00 2001 From: Gregor Olenik Date: Mon, 12 Feb 2024 20:47:50 +0100 Subject: [PATCH] Fixup --- src/obr/core/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/obr/core/core.py b/src/obr/core/core.py index e5302d67..15f84b64 100644 --- a/src/obr/core/core.py +++ b/src/obr/core/core.py @@ -418,7 +418,7 @@ def is_time(s: str) -> bool: except: return False - _, fs, _ = next(os.walk(self.path)) + _, fs, _ = next(os.walk(path)) ret = [path / f for f in fs if is_time(f)] ret.sort() return ret