Skip to content

Commit 5a67ad0

Browse files
ldrummblueyed
authored andcommitted
Fix spelling error: "expliclity" -> "explicitly"
[Also fixes "explicilty" -> "explicitly".] Signed-off-by: Daniel Hahler <[email protected]>
1 parent d1d5819 commit 5a67ad0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pytest-django tries to automatically add your project to the Python path by
1010
looking for a ``manage.py`` file and adding its path to the Python path.
1111

1212
If this for some reason fails for you, you have to manage your Python paths
13-
explicilty. See the documentation on :ref:`managing_the_python_path_explicilty`
13+
explicitly. See the documentation on :ref:`managing_the_python_path_explicitly`
1414
for more information.
1515

1616
How can I make sure that all my tests run with a specific locale?

docs/managing_python_path.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ in your project, the automatic detection may not be correct. See
2828
:ref:`managing_the_python_path_explicilty` for more details on how to configure
2929
your environment in that case.
3030

31-
.. _managing_the_python_path_explicilty:
31+
.. _managing_the_python_path_explicitly:
3232

33-
Managing the Python path explicilty
33+
Managing the Python path explicitly
3434
-----------------------------------
3535

3636
First, disable the automatic Django project finder. Add this to

pytest_django/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ def _exists(path, ignore=EnvironmentError):
7474
PROJECT_FOUND = ('pytest-django found a Django project in %s '
7575
'(it contains manage.py) and added it to the Python path.\n'
7676
'If this is wrong, add "django_find_project = false" to '
77-
'pytest.ini and expliclity manage your Python path.')
77+
'pytest.ini and explicitly manage your Python path.')
7878

7979
PROJECT_NOT_FOUND = ('pytest-django could not find a Django project '
8080
'(no manage.py file could be found). You must '
81-
'expliclity add your Django project to the Python path '
81+
'explicitly add your Django project to the Python path '
8282
'to have it picked up.')
8383

8484
PROJECT_SCAN_DISABLED = ('pytest-django did not search for Django '

0 commit comments

Comments
 (0)