From 2fef0271703fdf98cadce45f7d905c203c839430 Mon Sep 17 00:00:00 2001 From: REDxEYE Date: Thu, 21 Nov 2024 21:21:55 +0300 Subject: [PATCH] Fix recursion error --- library/utils/tiny_path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/utils/tiny_path.py b/library/utils/tiny_path.py index 94e106bc..cfa2c59c 100644 --- a/library/utils/tiny_path.py +++ b/library/utils/tiny_path.py @@ -102,7 +102,7 @@ def open(self, mode='r', buffering=-1, encoding=None, return open(self, mode, buffering, encoding, errors, newline) def as_posix(self): - return self + return str(self) def exists(self): return os.path.exists(self)