summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Driessen <vincent@datafox.nl>2010-08-02 12:41:28 +0200
committerVincent Driessen <vincent@datafox.nl>2010-08-02 12:41:28 +0200
commit2c49fbe379788966ec813c383a15bc73afd13015 (patch)
tree9a6e6412d8a70682a4fcad2feac2d90198eb33f0
parentd609b92c15941a3d42cdb7f5cc1390b252ff56e9 (diff)
downloadnose-machineout-2c49fbe379788966ec813c383a15bc73afd13015.tar.bz2
nose-machineout-2c49fbe379788966ec813c383a15bc73afd13015.tar.xz
nose-machineout-2c49fbe379788966ec813c383a15bc73afd13015.zip
Change the documentation value.
The previous value broke "python setup.py bdist_rpm" builds.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 3b1749b..959c47e 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ from setuptools import setup
11setup( 11setup(
12 name="nose_machineout", 12 name="nose_machineout",
13 version="0.2", 13 version="0.2",
14 description=__doc__, 14 description=__doc__.replace('\n', ' ').strip(),
15 author="Mike Crute", 15 author="Mike Crute",
16 author_email="mcrute@gmail.com", 16 author_email="mcrute@gmail.com",
17 url="http://nose-machineout.googlecode.com", 17 url="http://nose-machineout.googlecode.com",