Skip to content

Commit

Permalink
Fix some really stupid typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Stormheg committed Nov 14, 2023
1 parent 57de001 commit e0cccd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ The package namespace has been renamed from `captcha` to `django_recaptcha` to a
-from captcha.fields import ReCaptchaField
-from captcha.widgets import ReCaptchaV2Checkbox, ReCaptchaV2Invisible, ReCaptchaV3
# New
+from django_captcha.fields import ReCaptchaField
+from django_captcha.widgets import ReCaptchaV2Checkbox, ReCaptchaV2Invisible, ReCaptchaV3
+from django_recaptcha.fields import ReCaptchaField
+from django_recaptcha.widgets import ReCaptchaV2Checkbox, ReCaptchaV2Invisible, ReCaptchaV3
```

**Action required:** update your Django settings like this:
Expand All @@ -44,7 +44,7 @@ INSTALLED_APPS = [
# Old
- "captcha",
# New
+ "django_captcha",
+ "django_recaptcha",
# ...
]
```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Element.closest](https://developer.mozilla.org/en-US/docs/Web/API/Element/closes
```python
INSTALLED_APPS = [
...,
'django_captcha',
'django_recaptcha',
...
]
```
Expand Down

0 comments on commit e0cccd1

Please sign in to comment.