From ed3b1c6fb79deb3c0057dcd9e365d67dd16a6d45 Mon Sep 17 00:00:00 2001
From: Daira Hopwood <daira@jacaranda.org>
Date: Wed, 6 May 2015 15:22:04 +0100
Subject: [PATCH] autoAdd is no longer used.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
---
 src/allmydata/windows/inotify.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/allmydata/windows/inotify.py b/src/allmydata/windows/inotify.py
index 4255b6fd..3a0f7ba6 100644
--- a/src/allmydata/windows/inotify.py
+++ b/src/allmydata/windows/inotify.py
@@ -299,7 +299,7 @@ class INotify(PollMixin):
         precondition(self._filter is None, "only one watch is supported")
         precondition(isinstance(autoAdd, bool), autoAdd=autoAdd)
         precondition(isinstance(recursive, bool), recursive=recursive)
-        precondition(autoAdd == recursive, "need autoAdd and recursive to be the same", autoAdd=autoAdd, recursive=recursive)
+        precondition(not autoAdd, "autoAdd not supported")
 
         self._path = path
         path_u = path.path
-- 
2.45.2