From 7c90aed39df3fd6b2ef1500d5420c4dbf6f9401e Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 25 Aug 2006 01:08:24 +0000 Subject: [PATCH] For some reason Vim was just not wanting to tell me there was more instances of '<>'. --- Lib/plat-riscos/riscosenviron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/plat-riscos/riscosenviron.py b/Lib/plat-riscos/riscosenviron.py index 6b0f82110d7..ae09a9d887e 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