2 次代码提交 3b52a57144 ... 8ae15e5d08

作者 SHA1 备注 提交日期
  TonyKurts 8ae15e5d08 Fixed a bug where it was impossible to create a superuser using standard Django tools 1 月之前
  TonyKurts 3b52a57144 Fixed a bug where it was impossible to create a superuser using standard Django tools 1 月之前
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      models.py

+ 1 - 1
models.py

@@ -11,4 +11,4 @@ class ShariXUser(AbstractUser):
     REQUIRED_FIELDS = ['username', 'first_name', 'last_name']
 
     def __str__(self):
-        return f"{self.first_name} {self.last_name}{" " + self.patronymic if self.patronymic else ""}"
+        return f"{self.first_name} {self.last_name}{' ' + self.patronymic if self.patronymic else ''}"