[2.2.x] Removed redundant period in Watchman unavailable message.

Backport of d8a2f4ec09 from master.
This commit is contained in:
Tom Forbes 2019-01-19 23:25:01 +00:00 committed by Tim Graham
parent 70aeb6ab01
commit 370371ee9e
1 changed files with 1 additions and 1 deletions

View File

@ -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: