Commit 5f81a24d authored by Brett Cannon's avatar Brett Cannon

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

'<>'.
parent 1234a5ec
...@@ -39,7 +39,7 @@ class _Environ: ...@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment