Fix error message when inotify limits were hit
This commit is contained in:
parent
03195cf93f
commit
26ea5f0f00
|
@ -134,7 +134,7 @@ class INotify(object):
|
|||
eno = ctypes.get_errno()
|
||||
extra = ''
|
||||
if eno == errno.ENOSPC:
|
||||
extra = 'You may need to increase the inotify limits on your system, via /proc/sys/inotify/max_user_*'
|
||||
extra = 'You may need to increase the inotify limits on your system, via /proc/sys/fs/inotify/max_user_*'
|
||||
raise OSError(eno, self.os.strerror(eno) + str(extra))
|
||||
|
||||
def __del__(self):
|
||||
|
|
Loading…
Reference in New Issue