From 2ae5a7b0bd254053fc66e717327ddddebd44394d Mon Sep 17 00:00:00 2001 From: Igor Lobanov Date: Thu, 5 Oct 2023 11:41:22 +0200 Subject: [PATCH] another bio/about fix --- migration/tables/users.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migration/tables/users.py b/migration/tables/users.py index dde3bca3..d7a0f260 100644 --- a/migration/tables/users.py +++ b/migration/tables/users.py @@ -40,9 +40,9 @@ def migrate(entry): bio_text = BeautifulSoup(bio, features="lxml").text if len(bio_text) > 120: - user_dict["bio"] = bio_text - else: user_dict["about"] = bio_text + else: + user_dict["bio"] = bio_text # userpic try: