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
commitddf1d8419b10f4a9103397497e2486e571aff831 (patch)
tree17378726c0c5f023d98bbd6e66003b5cadf2b6aa
parentcb22cfbf83c0edc288934930030b0baef7467604 (diff)
downloadpython-coveragepy-git-ddf1d8419b10f4a9103397497e2486e571aff831.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 bc4a45c5..71c43421 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