From 8c995501aade6b92adc96848aa52765f28af7356 Mon Sep 17 00:00:00 2001 From: chiku Date: Thu, 19 Feb 2026 17:01:46 +0900 Subject: [PATCH] Update pyfuse3_asyncio import for pyfuse3 >= 3.4.2 pyfuse3 3.4.0 renamed `pyfuse3_asyncio` to `pyfuse3.asyncio` with a compatibility wrapper. pyfuse3 3.4.2 (2026-01-06) removed the wrapper entirely, causing ModuleNotFoundError on import. Fixing this issue by updating the import to use the new module path. --- rdmfs/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rdmfs/__main__.py b/rdmfs/__main__.py index fd73622..d7cc4c1 100644 --- a/rdmfs/__main__.py +++ b/rdmfs/__main__.py @@ -6,12 +6,12 @@ import pwd import re import pyfuse3 -import pyfuse3_asyncio +import pyfuse3.asyncio from rdmfs import fs, whitelist from osfclient import cli -pyfuse3_asyncio.enable() +pyfuse3.asyncio.enable() def init_logging(debug=False): formatter = logging.Formatter('%(asctime)s.%(msecs)03d %(levelname)s %(threadName)s: '