commit | 7c90aed39df3fd6b2ef1500d5420c4dbf6f9401e | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Fri Aug 25 01:08:24 2006 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Fri Aug 25 01:08:24 2006 +0000 |
tree | 040c7d98af915d8310611b490237cbcc9228e369 | |
parent | 0fc9139193cecfd12bd78bd7ec059dc571a4415a [diff] [blame] |
For some reason Vim was just not wanting to tell me there was more instances of '<>'.
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 @@ 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