fix ModuleNotFound Exception
This commit is contained in:
parent
76029d6389
commit
84bfd6b634
1 changed files with 3 additions and 3 deletions
|
@ -21,9 +21,9 @@ try:
|
|||
except:
|
||||
try:
|
||||
from fusepy import FUSE, FuseOSError, Operations
|
||||
except:
|
||||
print("please install fusepy")
|
||||
raise errno.ModuleNotFoundError
|
||||
except ModuleNotFoundError as e:
|
||||
print("please install fusepy", e)
|
||||
raise
|
||||
|
||||
|
||||
class WorkdirFS(Operations):
|
||||
|
|
Loading…
Reference in a new issue