Fix indentation

This commit is contained in:
Alexandre Iooss 2020-02-11 21:12:00 +01:00
parent b69ded4115
commit 5b86781881
1 changed files with 16 additions and 7 deletions

View File

@ -103,8 +103,11 @@ class MediaAdminForm(ModelForm):
self.download_data_openlibrary(isbn)
if self.cleaned_data['title']:
self.cleaned_data['title'] = re.sub(r'\(AUT\) ',
'', self.cleaned_data['title'])
self.cleaned_data['title'] = re.sub(
r'\(AUT\) ',
'',
self.cleaned_data['title']
)
if self.cleaned_data['authors']:
authors = self.cleaned_data['authors']
@ -131,12 +134,18 @@ class MediaAdminForm(ModelForm):
title_normalized.replace(' ', ''), )
if self.cleaned_data['subtitle']:
self.cleaned_data['subtitle'] = re.sub(r'</span>',
'', self.cleaned_data['subtitle'])
self.cleaned_data['subtitle'] = re.sub(r'<span.*>',
'', self.cleaned_data['subtitle'])
self.cleaned_data['subtitle'] = re.sub(
r'</span>',
'',
self.cleaned_data['subtitle']
)
self.cleaned_data['subtitle'] = re.sub(
r'<span.*>',
'',
self.cleaned_data['subtitle']
)
start = self.cleaned_data['subtitle'].split(' ')[0] \
.replace('.', '')
.replace('.', '')
if start.isnumeric():
side_identifier += " {:0>2}".format(start, )