fix ModuleNotFound Exception

This commit is contained in:
Jakobus Schürz 2020-02-29 06:51:06 +01:00
parent 76029d6389
commit 84bfd6b634

View file

@ -21,9 +21,9 @@ try:
except: except:
try: try:
from fusepy import FUSE, FuseOSError, Operations from fusepy import FUSE, FuseOSError, Operations
except: except ModuleNotFoundError as e:
print("please install fusepy") print("please install fusepy", e)
raise errno.ModuleNotFoundError raise
class WorkdirFS(Operations): class WorkdirFS(Operations):