Explorar o código

fix using dulwich on windows

Chaiwat Suttipongsakul %!s(int64=10) %!d(string=hai) anos
pai
achega
1697076058
Modificáronse 1 ficheiros con 3 adicións e 2 borrados
  1. 3 2
      dulwich/pack.py

+ 3 - 2
dulwich/pack.py

@@ -48,6 +48,7 @@ except ImportError:
     izip = zip
 
 import os
+import sys
 
 try:
     import mmap
@@ -56,8 +57,8 @@ except ImportError:
 else:
     has_mmap = True
 
-# For some reason the above try, except fails to set has_mmap = False
-if os.uname()[0] == 'Plan9':
+# For some reason the above try, except fails to set has_mmap = False for plan9
+if sys.platform == 'Plan9':
     has_mmap = False
 
 from hashlib import sha1