From d8a2f4ec09e5b7e73a706a1b1b5bf74d8bdc64b3 Mon Sep 17 00:00:00 2001 From: Tom Forbes Date: Sat, 19 Jan 2019 23:25:01 +0000 Subject: [PATCH] Removed redundant period in Watchman unavailable message. --- django/utils/autoreload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/autoreload.py b/django/utils/autoreload.py index 708205917a..dcfb10cee0 100644 --- a/django/utils/autoreload.py +++ b/django/utils/autoreload.py @@ -580,7 +580,7 @@ def run_with_reloader(main_func, *args, **kwargs): try: WatchmanReloader.check_availability() except WatchmanUnavailable as e: - logger.info('Watchman unavailable: %s.', e) + logger.info('Watchman unavailable: %s', e) exit_code = restart_with_reloader() sys.exit(exit_code) except KeyboardInterrupt: