From 59826c8cfd42a13bb0e4cf9f9e0f62ab1d27a543 Mon Sep 17 00:00:00 2001 From: Marcelo Anton Date: Thu, 18 Oct 2012 11:44:18 -0300 Subject: [PATCH] This change in how the variable is declared DESCRIPTION corrects problems when running the command ``python setup.py bdist_rpm`` --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6d9b51bc..35ca5793 100644 --- a/setup.py +++ b/setup.py @@ -8,8 +8,8 @@ try: except ImportError: pass -DESCRIPTION = """MongoEngine is a Python Object-Document -Mapper for working with MongoDB.""" +DESCRIPTION = 'MongoEngine is a Python Object-Document ' + \ +'Mapper for working with MongoDB.' LONG_DESCRIPTION = None try: LONG_DESCRIPTION = open('README.rst').read()