Browse Source
[FIX] Deletes an unnecessary function call
pull/172/head
omar7r
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
report_py3o/models/py3o_report.py
|
@ -67,7 +67,7 @@ def py3o_report_extender(report_xml_id=None): |
|
|
|
|
|
|
|
|
def format_multiline_value(value): |
|
|
def format_multiline_value(value): |
|
|
if value: |
|
|
if value: |
|
|
return Markup(unicode(value).replace('<', '<').replace('>', '>'). |
|
|
|
|
|
|
|
|
return Markup(value.replace('<', '<').replace('>', '>'). |
|
|
replace('\n', '<text:line-break/>'). |
|
|
replace('\n', '<text:line-break/>'). |
|
|
replace('\t', '<text:s/><text:s/><text:s/><text:s/>')) |
|
|
replace('\t', '<text:s/><text:s/><text:s/><text:s/>')) |
|
|
return "" |
|
|
return "" |
|
|