Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7c90aed

Browse files
committed
For some reason Vim was just not wanting to tell me there was more instances of
'<>'.
1 parent 0fc9139 commit 7c90aed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/plat-riscos/riscosenviron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def update(self, dict):
3939
riscos.putenv(k, v)
4040
def get(self, key, failobj=None):
4141
value = riscos.getenv(key)
42-
if value<>None:
42+
if value != None:
4343
return value
4444
else:
4545
return failobj

0 commit comments

Comments
 (0)