diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c12a328c..43e4b5b7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,8 @@ Unreleased - Start testing with Django 3.2 on Python 3.9 (Michael K.) - Teach pylint-django about all HTTP methods from the View class, not only ``get`` and ``post`` (Nicolás Quiroz) +- Typo fixes for + `#314 `_ (John Sandall) - Ignore ``unused-argument`` for ``*args``, ``**kwards`` in view method signatures diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f0151e7f..276798e7 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -18,3 +18,4 @@ * [brymut](https://github.com/brymut) * [michael-k](https://github.com/michael-k) * [naquiroz](https://github.com/naquiroz) +* [john-sandall](https://github.com/john-sandall) diff --git a/pylint_django/checkers/foreign_key_strings.py b/pylint_django/checkers/foreign_key_strings.py index 02606cce..febb0880 100644 --- a/pylint_django/checkers/foreign_key_strings.py +++ b/pylint_django/checkers/foreign_key_strings.py @@ -46,7 +46,7 @@ class ForeignKeyStringsChecker(BaseChecker): msgs = { "E%s10" % BASE_ID: ( - "Django was not configured. For more information run" + "Django was not configured. For more information run " "pylint --load-plugins=pylint_django --help-msg=django-not-configured", "django-not-configured", _LONG_MESSAGE, @@ -127,7 +127,7 @@ def open(self): settings.configure() django.setup() - # now we can add the trasforms specifc to this checker + # Now we can add the transforms specific to this checker foreignkey.add_transform(astroid.MANAGER) # TODO: this is a bit messy having so many inline imports but in order to avoid