Merge pull request #209 from liuhongtong/master-lht-casctl

utils: casctl needs python 3.5+
This commit is contained in:
Robert Baldyga 2019-11-29 11:41:57 +01:00 committed by GitHub
commit d797bc7211
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,9 @@ import sys
import re
import opencas
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)