summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Forbes <tom@tomforb.es>2019-02-26 02:43:29 +0000
committerTim Graham <timograham@gmail.com>2019-02-25 21:43:29 -0500
commit65ef5f467ba84c26392a157de1622d805401ec7d (patch)
tree1dbdc674513198e33d87e8501d5497a874a9c00e
parente04209e181c99ac16ca769d115ac640015a83757 (diff)
Refs #27685 -- Removed "watchman unavailable" message.
-rw-r--r--django/utils/autoreload.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/django/utils/autoreload.py b/django/utils/autoreload.py
index 2ca4d6f74a..931f4b82e4 100644
--- a/django/utils/autoreload.py
+++ b/django/utils/autoreload.py
@@ -578,10 +578,6 @@ def run_with_reloader(main_func, *args, **kwargs):
logger.info('Watching for file changes with %s', reloader.__class__.__name__)
start_django(reloader, main_func, *args, **kwargs)
else:
- try:
- WatchmanReloader.check_availability()
- except WatchmanUnavailable as e:
- logger.info('Watchman unavailable: %s', e)
exit_code = restart_with_reloader()
sys.exit(exit_code)
except KeyboardInterrupt: