diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-08-25 01:08:24 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-08-25 01:08:24 (GMT) |
commit | 7c90aed39df3fd6b2ef1500d5420c4dbf6f9401e (patch) | |
tree | 040c7d98af915d8310611b490237cbcc9228e369 /Lib | |
parent | 0fc9139193cecfd12bd78bd7ec059dc571a4415a (diff) | |
download | cpython-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
'<>'.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/plat-riscos/riscosenviron.py | 2 |
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 |