Revert "opencas.py uses the f-string feature of python3.6+."

This reverts commit b533e2cbf9.

Signed-off-by: Robert Baldyga <robert.baldyga@intel.com>
This commit is contained in:
Robert Baldyga 2021-11-10 08:39:46 +01:00
parent 259f9e3c58
commit 14abaf1589

View File

@ -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)