Fix error message when inotify limits were hit

This commit is contained in:
Foo 2015-07-18 16:55:04 +03:00
parent 03195cf93f
commit 26ea5f0f00
1 changed files with 1 additions and 1 deletions

View File

@ -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):