The scenario is,
I cloned the Django code for OpenShift-V3 from here . When I run the code using python manage.py runserver getting an error as,
python manage.py runserver
Go to django-ex/project/settings.py
Change the line in settings.py as below
WSGI_APPLICATION = 'application' to WSGI_APPLICATION = 'wsgi.application'
WSGI_APPLICATION = 'application'
WSGI_APPLICATION = 'wsgi.application'
That's it :(