##// END OF EJS Templates
pycompat: adding Linux detection and fixing Mac...
rdamazio@google.com -
r40563:1b49b84d default
parent child Browse files
Show More
@@ -403,7 +403,8 else:
403
403
404 isjython = sysplatform.startswith(b'java')
404 isjython = sysplatform.startswith(b'java')
405
405
406 isdarwin = sysplatform == b'darwin'
406 isdarwin = sysplatform.startswith(b'darwin')
407 islinux = sysplatform.startswith(b'linux')
407 isposix = osname == b'posix'
408 isposix = osname == b'posix'
408 iswindows = osname == b'nt'
409 iswindows = osname == b'nt'
409
410
General Comments 0
You need to be logged in to leave comments. Login now