Skip to content

Commit dbf1ab3

Browse files
author
Emmanouil Konstantinidis
committed
Fix typo in 404 Error
1 parent c4786c3 commit dbf1ab3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ First of all thanks to the [Django](http://www.djangoproject.com/) core team and
6868
[travis-image]: https://travis-ci.org/ekonstantinidis/django-rest-framework-docs.svg?branch=master
6969
[travis-url]: https://travis-ci.org/ekonstantinidis/django-rest-framework-docs
7070

71-
[pypi-image]: https://img.shields.io/pypi/v/drfdocs.svg
71+
[pypi-image]: https://badge.fury.io/py/drfdocs.svg
7272
[pypi-url]: https://pypi.python.org/pypi/drfdocs/
7373

7474
[codecov-image]: https://codecov.io/github/ekonstantinidis/django-rest-framework-docs/coverage.svg?branch=master

rest_framework_docs/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class DRFDocsView(TemplateView):
1111
def get_context_data(self, **kwargs):
1212
settings = DRFSettings().settings
1313
if settings["HIDDEN"]:
14-
raise Http404("Django Rest Framework Docs are hidden. Check you settings.")
14+
raise Http404("Django Rest Framework Docs are hidden. Check your settings.")
1515

1616
context = super(DRFDocsView, self).get_context_data(**kwargs)
1717
docs = ApiDocumentation()

0 commit comments

Comments
 (0)