What is bad in this jinja instruction?

Hello,

I have customized the quotation template. All works, however, this error is shown in the template editor field:

Unexpected character after attribute value.
Invalid character in attribute name.
Unexpected character after attribute name.

The error is in this line:

<td style="width: 10%; border: 0"><img src="{{ frappe.db.get_value("Company", doc.company, "company_logo") or "" }}" alt="" style="height: 80px !important" /></td>

The SRC attribute has the problem because I erased it an the error went away. What is the correct way to add that code?

Regards
Jaime

```
<td style="width: 10%; border: 0"><img src="{{ frappe.db.get_value('Company', doc.company, 'company_logo') or ' ' }}" alt="" style="height: 80px !important" /></td>
```

Try Above syntax