mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-24 00:33:27 +00:00
Logs viewer bug
This commit is contained in:
parent
91f06930d8
commit
4a69b7ca75
1 changed files with 7 additions and 1 deletions
|
@ -32,7 +32,13 @@
|
||||||
%for log in logs:
|
%for log in logs:
|
||||||
%line = []
|
%line = []
|
||||||
%line = log.split('|')
|
%line = log.split('|')
|
||||||
<tr class='log' data-message='{{line[2]}}' data-exception="\\
|
<tr class='log' data-message="\\
|
||||||
|
%try:
|
||||||
|
{{line[2]}}\\
|
||||||
|
%except:
|
||||||
|
\\
|
||||||
|
%end
|
||||||
|
" data-exception="\\
|
||||||
%try:
|
%try:
|
||||||
{{line[3]}}\\
|
{{line[3]}}\\
|
||||||
%except:
|
%except:
|
||||||
|
|
Loading…
Reference in a new issue