2 Commits 3b52a57144 ... 8ae15e5d08

Author SHA1 Message Date
  TonyKurts 8ae15e5d08 Fixed a bug where it was impossible to create a superuser using standard Django tools 1 month ago
  TonyKurts 3b52a57144 Fixed a bug where it was impossible to create a superuser using standard Django tools 1 month ago
1 changed files with 1 additions and 1 deletions
  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 ''}"