We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fce4b33 commit 7e7b277Copy full SHA for 7e7b277
pylint_django/checkers/foreign_key_strings.py
@@ -46,7 +46,7 @@ class ForeignKeyStringsChecker(BaseChecker):
46
msgs = {
47
"E%s10"
48
% BASE_ID: (
49
- "Django was not configured. For more information run"
+ "Django was not configured. For more information run "
50
"pylint --load-plugins=pylint_django --help-msg=django-not-configured",
51
"django-not-configured",
52
_LONG_MESSAGE,
@@ -127,7 +127,7 @@ def open(self):
127
settings.configure()
128
django.setup()
129
130
- # now we can add the trasforms specifc to this checker
+ # Now we can add the transforms specific to this checker
131
foreignkey.add_transform(astroid.MANAGER)
132
133
# TODO: this is a bit messy having so many inline imports but in order to avoid
0 commit comments