summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJay Loden <jloden@gmail.com>2009-01-27 02:12:57 +0000
committerJay Loden <jloden@gmail.com>2009-01-27 02:12:57 +0000
commit0ac85a43a9504054a1e9e25db11f981fe3d09276 (patch)
treee18dee88988eaf2360b5229637e85d9889d30780 /setup.py
parentebab3dca43b0e46a1e0a9a5233c3d393021262b1 (diff)
downloadpsutil-0ac85a43a9504054a1e9e25db11f981fe3d09276.tar.gz
Fixed path in setup.py for OS X and moved infoTuple declaration to after
argument parsing in get_process_info()
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 7ec1c645..d8afd6bc 100644
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ if sys.platform.lower().startswith("win"):
# OS X
if sys.platform.lower().startswith("darwin"):
# build OS X module
- module2 = Extension('psutil/_psutil_osx', sources = ['psutil/_psutil_osx.c'],)
+ module2 = Extension('_psutil_osx', sources = ['psutil/_psutil_osx.c'],)
setup (name = 'PsutilOSX',
version = '1.0',
description = 'OS X implementation',