fuse-client: print python version

This commit is contained in:
ed 2021-06-08 20:19:51 +02:00
parent 5e159432af
commit 5bbf875385

View file

@ -54,6 +54,12 @@ MACOS = platform.system() == "Darwin"
info = log = dbg = None
print("{} v{} @ {}".format(
platform.python_implementation(),
".".join([str(x) for x in sys.version_info]),
sys.executable))
try:
from fuse import FUSE, FuseOSError, Operations
except: