summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Forbes <tom@tomforb.es>2019-01-19 23:25:01 +0000
committerTim Graham <timograham@gmail.com>2019-01-19 18:25:18 -0500
commit370371ee9e0b2f47fa9735310c3a784714c61291 (patch)
tree7a7c9058ae4df525d3f1376b9095e6992357f699
parent70aeb6ab016612ddb50be75a3210250a184200ec (diff)
[2.2.x] Removed redundant period in Watchman unavailable message.
Backport of d8a2f4ec09e5b7e73a706a1b1b5bf74d8bdc64b3 from master.
-rw-r--r--django/utils/autoreload.py2
1 files changed, 1 insertions, 1 deletions
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: