From 5aa596dd4e8cb7ddb1cfa730546a432475b431a0 Mon Sep 17 00:00:00 2001 From: Gabriel Grant Date: Sat, 14 May 2011 14:19:49 -0700 Subject: [PATCH] add missing comma in requirements list --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 74002f1..8cb20df 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ license='BSD', long_description=open('README.md').read(), install_requires=[ - 'python-dateutil < 2.0' # dateutil (used by vobject) 2+ only works with Python 3 + 'python-dateutil < 2.0', # dateutil (used by vobject) 2+ only works with Python 3 'vobject', ], )