summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2006-08-25 01:08:24 (GMT)
committerBrett Cannon <bcannon@gmail.com>2006-08-25 01:08:24 (GMT)
commit7c90aed39df3fd6b2ef1500d5420c4dbf6f9401e (patch)
tree040c7d98af915d8310611b490237cbcc9228e369
parent0fc9139193cecfd12bd78bd7ec059dc571a4415a (diff)
downloadcpython-7c90aed39df3fd6b2ef1500d5420c4dbf6f9401e.zip
cpython-7c90aed39df3fd6b2ef1500d5420c4dbf6f9401e.tar.gz
cpython-7c90aed39df3fd6b2ef1500d5420c4dbf6f9401e.tar.bz2
For some reason Vim was just not wanting to tell me there was more instances of
'<>'.
-rw-r--r--Lib/plat-riscos/riscosenviron.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-riscos/riscosenviron.py b/Lib/plat-riscos/riscosenviron.py
index 6b0f821..ae09a9d 100644
--- a/Lib/plat-riscos/riscosenviron.py
+++ b/Lib/plat-riscos/riscosenviron.py
@@ -39,7 +39,7 @@ class _Environ:
riscos.putenv(k, v)
def get(self, key, failobj=None):
value = riscos.getenv(key)
- if value<>None:
+ if value != None:
return value
else:
return failobj