Renumber migration files and fix linter error

This commit is contained in:
Seamus Johnston 2023-06-01 17:28:27 -05:00
parent 66640ebafb
commit dcf6c8f8a2
No known key found for this signature in database
GPG key ID: 2F21225985069105
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
# Generated by Django 4.2.1 on 2023-06-01 15:23 # Generated by Django 4.2.1 on 2023-06-01 21:47
from django.db import migrations from django.db import migrations
import django_fsm # type: ignore import django_fsm # type: ignore
@ -7,7 +7,7 @@ import registrar.models.utility.domain_field
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
("registrar", "0023_alter_contact_first_name_alter_contact_last_name_and_more"), ("registrar", "0024_alter_contact_email"),
] ]
operations = [ operations = [

View file

@ -159,7 +159,7 @@ class Domain(TimeStampedModel, DomainHelper):
def password(self) -> str: def password(self) -> str:
""" """
Get the `auth_info.pw` element from the registry. Not a real password. Get the `auth_info.pw` element from the registry. Not a real password.
This `auth_info` element is required by the EPP protocol, but the registry is This `auth_info` element is required by the EPP protocol, but the registry is
using a different mechanism to ensure unauthorized clients cannot perform using a different mechanism to ensure unauthorized clients cannot perform
actions on domains they do not own. This field provides no security features. actions on domains they do not own. This field provides no security features.