From bd468c46de51a91932089add17ce27628bb1b31e Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 27 Jul 2021 17:52:54 +0100 Subject: [PATCH] Remove bold --- webapp_profile.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/webapp_profile.py b/webapp_profile.py index c09e4432e..48dc77bd1 100644 --- a/webapp_profile.py +++ b/webapp_profile.py @@ -1220,7 +1220,6 @@ def _htmlEditProfileInstance(baseDir: str, translate: {}, with open(counselorsFile, 'r') as f: counselors = f.read() roleAssignStr += \ - ' ' + \ editTextArea(translate['Counselors'], 'counselors', counselors, 200, '', False) @@ -1231,7 +1230,6 @@ def _htmlEditProfileInstance(baseDir: str, translate: {}, with open(artistsFile, 'r') as f: artists = f.read() roleAssignStr += \ - ' ' + \ editTextArea(translate['Artists'], 'artists', artists, 200, '', False) roleAssignStr += endEditSection()