mirror of https://github.com/django/django.git
Removed redundant period in Watchman unavailable message.
This commit is contained in:
parent
f05c02c4b8
commit
d8a2f4ec09
|
@ -580,7 +580,7 @@ def run_with_reloader(main_func, *args, **kwargs):
|
||||||
try:
|
try:
|
||||||
WatchmanReloader.check_availability()
|
WatchmanReloader.check_availability()
|
||||||
except WatchmanUnavailable as e:
|
except WatchmanUnavailable as e:
|
||||||
logger.info('Watchman unavailable: %s.', e)
|
logger.info('Watchman unavailable: %s', e)
|
||||||
exit_code = restart_with_reloader()
|
exit_code = restart_with_reloader()
|
||||||
sys.exit(exit_code)
|
sys.exit(exit_code)
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
|
|
Loading…
Reference in New Issue