diff options
| author | Jay Loden <jloden@gmail.com> | 2009-01-27 02:12:57 +0000 |
|---|---|---|
| committer | Jay Loden <jloden@gmail.com> | 2009-01-27 02:12:57 +0000 |
| commit | 0ac85a43a9504054a1e9e25db11f981fe3d09276 (patch) | |
| tree | e18dee88988eaf2360b5229637e85d9889d30780 /setup.py | |
| parent | ebab3dca43b0e46a1e0a9a5233c3d393021262b1 (diff) | |
| download | psutil-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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', |
