Commit 374511dc693403ff5692c6459b22011884a7e808
1 parent
13ff46a4
Fix syntax error EOL in get_document_by_id
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -52,7 +52,7 @@ def get_document_by_id(data, doc_id): |
52 | 52 | return document |
53 | 53 | for complaint in award.get('complaints', []): |
54 | 54 | for document in complaint.get('documents', []): |
55 | - if doc_id in document.get('title, ''): | |
55 | + if doc_id in document.get('title', ''): | |
56 | 56 | return document |
57 | 57 | raise Exception('Document with id {} not found'.format(doc_id)) |
58 | 58 | ... | ... |
Please
register
or
login
to post a comment