summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
Diffstat (limited to 'django')
-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 736e88cfe9..383998cfce 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: