From 14abaf1589d49acbac8b29812119c6814044c3ef Mon Sep 17 00:00:00 2001 From: Robert Baldyga Date: Wed, 10 Nov 2021 08:39:46 +0100 Subject: [PATCH] Revert "opencas.py uses the f-string feature of python3.6+." This reverts commit b533e2cbf9a67e5f3e392f2473675a1da4cfec93. Signed-off-by: Robert Baldyga --- utils/casctl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/casctl b/utils/casctl index 2171e70..f811596 100755 --- a/utils/casctl +++ b/utils/casctl @@ -10,8 +10,8 @@ import sys import opencas -if sys.version_info < (3, 6): - raise RuntimeError('At least Python 3.6 is required') +if sys.version_info < (3, 5): + raise RuntimeError('At least Python 3.5 is required') def eprint(*args, **kwargs): print(*args, file=sys.stderr, **kwargs)