mirror of https://github.com/zulip/zulip.git
zilencer's populate_db.py: Remove unnecessary cast to text_type.
This commit is contained in:
parent
21f789eb05
commit
88354ad1fc
|
@ -360,7 +360,7 @@ def restore_saved_messages():
|
|||
|
||||
sender_email = old_message["sender_email"]
|
||||
|
||||
domain = text_type(split_email_to_domain(sender_email))
|
||||
domain = split_email_to_domain(sender_email)
|
||||
realm_set.add(domain)
|
||||
|
||||
if old_message["sender_email"] not in email_set:
|
||||
|
|
Loading…
Reference in New Issue