Skip to content

Commit 88cb7e5

Browse files
committed
Fix mistake in comparison added during refactoring
1 parent 0395c6d commit 88cb7e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/basemap/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def checkversion(directory):
9595
# Define runtime library dirs.
9696
# Don't use runtime_library_dirs on windows (workaround for a distutils bug):
9797
# http://bugs.python.org/issue2437)
98-
if sys.platform != "win32":
98+
if sys.platform == "win32":
9999
runtime_lib_dirs = []
100100
else:
101101
runtime_lib_dirs = library_dirs

0 commit comments

Comments
 (0)