From 3a1dcb6bf63ed3b9e3cc7abafb4729a4a88e3d01 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 23 Jan 2019 10:44:00 -0500 Subject: [PATCH] macOS should now be considered a supported platform --- src/allmydata/frontends/magic_folder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/frontends/magic_folder.py b/src/allmydata/frontends/magic_folder.py index f8758f3b8..394a39fd4 100644 --- a/src/allmydata/frontends/magic_folder.py +++ b/src/allmydata/frontends/magic_folder.py @@ -79,7 +79,7 @@ def _get_inotify_module(): from allmydata.watchdog import inotify else: raise NotImplementedError("filesystem notification needed for Magic Folder is not supported.\n" - "This currently requires Linux or Windows.") + "This currently requires Linux, Windows, or macOS.") return inotify except (ImportError, AttributeError) as e: log.msg(e)