summaryrefslogtreecommitdiffstats
path: root/platform/uwp/detect.py
diff options
context:
space:
mode:
authorlupoDharkael <izhe@hotmail.es>2018-10-27 01:18:15 +0200
committerlupoDharkael <izhe@hotmail.es>2018-10-27 01:18:15 +0200
commitedcca5f7ad2ba92b3e04fb153f7db55c08593469 (patch)
tree8c29e3f3a2f793e3de3ae77f20c3a2607bf5e0e3 /platform/uwp/detect.py
parent970b58148f579f741934f64af437d01b985df15d (diff)
downloadredot-engine-edcca5f7ad2ba92b3e04fb153f7db55c08593469.tar.gz
Dont use equality operators with None singleton in python files
Diffstat (limited to 'platform/uwp/detect.py')
-rw-r--r--platform/uwp/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/detect.py b/platform/uwp/detect.py
index 559f23ca5b..f25b9ba9cd 100644
--- a/platform/uwp/detect.py
+++ b/platform/uwp/detect.py
@@ -17,7 +17,7 @@ def can_build():
# building natively on windows!
if (os.getenv("VSINSTALLDIR")):
- if (os.getenv("ANGLE_SRC_PATH") == None):
+ if (os.getenv("ANGLE_SRC_PATH") is None):
return False
return True