From 1d250ff9160c00b695ad7ea88eb79dff581bd365 Mon Sep 17 00:00:00 2001 From: manish-kr Date: Wed, 6 Jul 2016 21:56:18 -0700 Subject: Minor change in requirements.txt While running the command `pip install -r requirements.txt` the following error is observed: "InvalidRequirement: Invalid requirement, parse error at "u',' " Fix: Removed ',' after each module name in requirements.txt to fix the error.--- requirements.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2ace8a9..d3aa19a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -django==1.9.5, -mysql-python==1.2.5, -django-taggit==0.18.1, +django==1.9.5 +mysql-python==1.2.5 +django-taggit==0.18.1 pytz==2016.4 -- cgit