Fix indentation
This commit is contained in:
parent
b69ded4115
commit
5b86781881
|
@ -103,8 +103,11 @@ class MediaAdminForm(ModelForm):
|
||||||
self.download_data_openlibrary(isbn)
|
self.download_data_openlibrary(isbn)
|
||||||
|
|
||||||
if self.cleaned_data['title']:
|
if self.cleaned_data['title']:
|
||||||
self.cleaned_data['title'] = re.sub(r'\(AUT\) ',
|
self.cleaned_data['title'] = re.sub(
|
||||||
'', self.cleaned_data['title'])
|
r'\(AUT\) ',
|
||||||
|
'',
|
||||||
|
self.cleaned_data['title']
|
||||||
|
)
|
||||||
|
|
||||||
if self.cleaned_data['authors']:
|
if self.cleaned_data['authors']:
|
||||||
authors = self.cleaned_data['authors']
|
authors = self.cleaned_data['authors']
|
||||||
|
@ -131,12 +134,18 @@ class MediaAdminForm(ModelForm):
|
||||||
title_normalized.replace(' ', ''), )
|
title_normalized.replace(' ', ''), )
|
||||||
|
|
||||||
if self.cleaned_data['subtitle']:
|
if self.cleaned_data['subtitle']:
|
||||||
self.cleaned_data['subtitle'] = re.sub(r'</span>',
|
self.cleaned_data['subtitle'] = re.sub(
|
||||||
'', self.cleaned_data['subtitle'])
|
r'</span>',
|
||||||
self.cleaned_data['subtitle'] = re.sub(r'<span.*>',
|
'',
|
||||||
'', self.cleaned_data['subtitle'])
|
self.cleaned_data['subtitle']
|
||||||
|
)
|
||||||
|
self.cleaned_data['subtitle'] = re.sub(
|
||||||
|
r'<span.*>',
|
||||||
|
'',
|
||||||
|
self.cleaned_data['subtitle']
|
||||||
|
)
|
||||||
start = self.cleaned_data['subtitle'].split(' ')[0] \
|
start = self.cleaned_data['subtitle'].split(' ')[0] \
|
||||||
.replace('.', '')
|
.replace('.', '')
|
||||||
|
|
||||||
if start.isnumeric():
|
if start.isnumeric():
|
||||||
side_identifier += " {:0>2}".format(start, )
|
side_identifier += " {:0>2}".format(start, )
|
||||||
|
|
Loading…
Reference in New Issue