forked from CGM_Public/pretix_original
Update beautifulsoup4 requirement from ==4.12.* to ==4.13.* (#4804)
* Update beautifulsoup4 requirement from ==4.12.* to ==4.13.* Updates the requirements on [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/) to permit the latest version. --- updated-dependencies: - dependency-name: beautifulsoup4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Replace findAll with find_all --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Raphael Michel <michel@rami.io>
This commit is contained in:
@@ -74,7 +74,7 @@ def extract_form_fields(soup):
|
||||
continue
|
||||
|
||||
# textareas
|
||||
for textarea in soup.findAll('textarea'):
|
||||
for textarea in soup.find_all('textarea'):
|
||||
if textarea['name'] in data:
|
||||
if not isinstance(data[textarea['name']], list):
|
||||
data[textarea['name']] = [data[textarea['name']]]
|
||||
|
||||
Reference in New Issue
Block a user