Submitter | phabricator |
---|---|
Date | March 10, 2022, 1:08 a.m. |
Message ID | <differential-rev-PHID-DREV-ltbiulppgye7tipzdjwu-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/50709/ |
State | New |
Headers | show |
Comments
Patch
diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -72,9 +72,9 @@ import uuid import xml.dom.minidom as minidom -if sys.version_info < (3, 5, 0): +if sys.version_info < (3, 6, 0): print( - '%s is only supported on Python 3.5+, not %s' + '%s is only supported on Python 3.6+, not %s' % (sys.argv[0], '.'.join(str(v) for v in sys.version_info[:3])) ) sys.exit(70) # EX_SOFTWARE from `man 3 sysexit`