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 @@ def update(self, dict):
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