From b533e2cbf9a67e5f3e392f2473675a1da4cfec93 Mon Sep 17 00:00:00 2001 From: Sha Fanghao Date: Mon, 29 Mar 2021 18:17:11 +0800 Subject: [PATCH] opencas.py uses the f-string feature of python3.6+. Signed-off-by: Sha Fanghao --- utils/casctl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/casctl b/utils/casctl index f811596..2171e70 100755 --- a/utils/casctl +++ b/utils/casctl @@ -10,8 +10,8 @@ import sys import opencas -if sys.version_info < (3, 5): - raise RuntimeError('At least Python 3.5 is required') +if sys.version_info < (3, 6): + raise RuntimeError('At least Python 3.6 is required') def eprint(*args, **kwargs): print(*args, file=sys.stderr, **kwargs)