Fix APPVEYOR_REPO_TAG, Ref. #387

This commit is contained in:
ziajka 2019-04-29 10:25:04 +02:00
parent 9c1562a06d
commit 940a93c66d

View File

@ -190,7 +190,7 @@ def is_tagged():
return True
if 'CIRCLE_TAG' in os.environ.keys():
return True
if os.environ['APPVEYOR_REPO_TAG'] in (1, "True", "true"):
if os.environ.get('APPVEYOR_REPO_TAG', False) in (1, "True", "true"):
return True