mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
zerver/lib: Remove u prefix from strings.
This commit is contained in:
@@ -74,7 +74,7 @@ class ModelReprMixin:
|
||||
def __unicode__(self) -> Text:
|
||||
# Originally raised an exception, but Django (e.g. the ./manage.py shell)
|
||||
# was catching the exception and not displaying any sort of error
|
||||
return u"Implement __unicode__ in your subclass of ModelReprMixin!"
|
||||
return "Implement __unicode__ in your subclass of ModelReprMixin!"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return force_str(self.__unicode__())
|
||||
|
||||
Reference in New Issue
Block a user