mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix typo in delimiter
This commit is contained in:
parent
1ce94348d8
commit
2bd4eb2292
@ -286,21 +286,21 @@ class Document(models.Model):
|
||||
@staticmethod
|
||||
def many_to_dictionary(field):
|
||||
# Converts ManyToManyField to dictionary by assuming, that field
|
||||
# entries contain an _ or - which will be used as a delimeter
|
||||
# entries contain an _ or - which will be used as a delimiter
|
||||
mydictionary = dict()
|
||||
|
||||
for t in field.all():
|
||||
# Find delimeter
|
||||
delimeter = t.name.find('_')
|
||||
# Find delimiter
|
||||
delimiter = t.name.find('_')
|
||||
|
||||
if delimeter is -1:
|
||||
delimeter = t.name.find('-')
|
||||
if delimiter is -1:
|
||||
delimiter = t.name.find('-')
|
||||
|
||||
if delimeter is -1:
|
||||
if delimiter is -1:
|
||||
continue
|
||||
|
||||
key = t.name[:delimeter]
|
||||
value = t.name[delimeter+1:]
|
||||
key = t.name[:delimiter]
|
||||
value = t.name[delimiter+1:]
|
||||
|
||||
mydictionary[slugify(key)] = slugify(value)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user