From f1bd97a25954701dd25cec9907275799c51f1a61 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Wed, 9 Sep 2020 17:51:28 -0400 Subject: [PATCH] logging grammer fix --- apprise/py3compat/asyncio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apprise/py3compat/asyncio.py b/apprise/py3compat/asyncio.py index 85519fa2..626b9bbb 100644 --- a/apprise/py3compat/asyncio.py +++ b/apprise/py3compat/asyncio.py @@ -43,7 +43,7 @@ def notify(coroutines, debug=False): # Create log entry logger.info( - 'Notifying {} service(s) asynchronous.'.format(len(coroutines))) + 'Notifying {} service(s) asynchronously.'.format(len(coroutines))) if ASYNCIO_RUN_SUPPORT: # async reference produces a SyntaxError (E999) in Python v2.7