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
1 changed files with 1 additions and 1 deletions

View 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