For some reason Vim was just not wanting to tell me there was more instances of
'<>'.
This commit is contained in:
parent
0fc9139193
commit
7c90aed39d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue