From 65ef5f467ba84c26392a157de1622d805401ec7d Mon Sep 17 00:00:00 2001 From: Tom Forbes Date: Tue, 26 Feb 2019 02:43:29 +0000 Subject: [PATCH] Refs #27685 -- Removed "watchman unavailable" message. --- django/utils/autoreload.py | 4 ---- 1 file changed, 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: