-
-
Notifications
You must be signed in to change notification settings - Fork 163
Closed
Labels
Description
statvfs was introduced in the following commit:
ec8cc1e
statvfs is not available on Windows as far as I can gather.
AttributeError: module 'os' has no attribute 'statvfs'
A simple fix may be something like:
if hasattr(os, 'statvfs'):
statvfs = wrap(os.statvfs)Reactions are currently unavailable