summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-03-18 11:19:53 -0400
committerNed Batchelder <ned@nedbatchelder.com>2012-03-18 11:19:53 -0400
commitc5df2f53ad007a6b79f0a94c8dd6c08e206a7b56 (patch)
tree40e5f8e6530ab5ebdf18b616315de314a32176c1
parent08d07fab655f6069668d3da6679e690a4af608c8 (diff)
downloadpython-coveragepy-c5df2f53ad007a6b79f0a94c8dd6c08e206a7b56.tar.gz
Of course I got that logic change wrong...
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index bc4a45c..71c4342 100644
--- a/setup.py
+++ b/setup.py
@@ -106,7 +106,7 @@ setup_args = dict(
compile_extension = True
-if not sys.platform.startswith('java'):
+if sys.platform.startswith('java'):
# Jython can't compile C extensions
compile_extension = False