server connection reset when click on localhost: Python error: wsgiref-> simple_server.py "noneType" object has no attribute split

2016-03-18 Thread amarshall
So I'm moving my work environment from one environment to the next. I did a pip install -r requirements for a list of packages I had. setup the DB. Migration went good. I do runserver and that runs. BUT when I click on the link to the homepage it says "The Connection was reset" in my browser. I

Re: server connection reset when click on localhost: Python error: wsgiref-> simple_server.py "noneType" object has no attribute split

2016-03-21 Thread amarshall
Figured it out.. In case anyone else was wondering or comes across this. I went into the wsgiref/simple_server.py file and commented out that line of code: /usr/lib/python2.7/wsgiref/simple_server.py", line 33, in close self.status.split(' ',1)[0], self.bytes_sent After commenting that out a

Re: server connection reset when click on localhost: Python error: wsgiref-> simple_server.py "noneType" object has no attribute split

2017-09-25 Thread 'Chris Parry' via Django users
What was the package you were missing? On Tuesday, 22 March 2016 00:01:11 UTC, amarshall wrote: > > Figured it out.. In case anyone else was wondering or comes across this. I > went into the wsgiref/simple_server.py file and commented out that line of > code: > /usr/lib/python2.7/wsgiref/simple_