]> granicus.if.org Git - python/commitdiff
For some reason Vim was just not wanting to tell me there was more instances of
authorBrett Cannon <bcannon@gmail.com>
Fri, 25 Aug 2006 01:08:24 +0000 (01:08 +0000)
committerBrett Cannon <bcannon@gmail.com>
Fri, 25 Aug 2006 01:08:24 +0000 (01:08 +0000)
'<>'.

Lib/plat-riscos/riscosenviron.py

index 6b0f82110d7c4b3e7c93e21ca84229c2224721be..ae09a9d887ef90ee0728342a2a38541cafc2100e 100644 (file)
@@ -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