From 85cf61f622c3f26518f75c238689c61db59e4180 Mon Sep 17 00:00:00 2001 From: Ivan Balakin Date: Mon, 31 Jul 2023 18:14:00 +0300 Subject: [PATCH] refactor: Clarify error message Co-authored-by: Matteo Bigoi <1781140+crisidev@users.noreply.github.com> --- tacacs_plus/async_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tacacs_plus/async_client.py b/tacacs_plus/async_client.py index 53bdb43..268e1d1 100644 --- a/tacacs_plus/async_client.py +++ b/tacacs_plus/async_client.py @@ -39,7 +39,7 @@ if sys.version_info < (3, 7): raise Exception( - 'Async TACACS client is not compatible with Python version %s' % sys.version + 'Async TACACS client requires Python 3.7+. Current Python version: %s' % sys.version )