For some reason Vim was just not wanting to tell me there was more instances of

'<>'.
This commit is contained in:
Brett Cannon 2006-08-25 01:08:24 +00:00
parent 0fc9139193
commit 7c90aed39d

View file

@ -39,7 +39,7 @@ class _Environ:
riscos.putenv(k, v) riscos.putenv(k, v)
def get(self, key, failobj=None): def get(self, key, failobj=None):
value = riscos.getenv(key) value = riscos.getenv(key)
if value<>None: if value != None:
return value return value
else: else:
return failobj return failobj