Bad indentation and tailing whitespaces
This commit is contained in:
parent
23f064f2b7
commit
7b80e1b23a
@ -462,7 +462,7 @@ class OOMAnalyser(object):
|
|||||||
self.REC_PAGEINFO,
|
self.REC_PAGEINFO,
|
||||||
self.REC_PID_KERNELVERSION,
|
self.REC_PID_KERNELVERSION,
|
||||||
self.REC_SWAP,
|
self.REC_SWAP,
|
||||||
]:
|
]:
|
||||||
match = rec.search(self.oom_entity.text)
|
match = rec.search(self.oom_entity.text)
|
||||||
if match:
|
if match:
|
||||||
gd = match.groupdict()
|
gd = match.groupdict()
|
||||||
@ -995,7 +995,7 @@ Killed process 6576 (java) total-vm:33914892kB, anon-rss:20629004kB, file-rss:0k
|
|||||||
if not (is_visible(element) and element.id):
|
if not (is_visible(element) and element.id):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
new_toc +='<li><a href="#{}">{}</a></li>'.format(element.id, element.textContent)
|
new_toc += '<li><a href="#{}">{}</a></li>'.format(element.id, element.textContent)
|
||||||
|
|
||||||
toc_content.innerHTML = new_toc
|
toc_content.innerHTML = new_toc
|
||||||
|
|
||||||
@ -1049,11 +1049,11 @@ Killed process 6576 (java) total-vm:33914892kB, anon-rss:20629004kB, file-rss:0k
|
|||||||
|
|
||||||
if column_name == self.sorted_column:
|
if column_name == self.sorted_column:
|
||||||
if self.sort_order == 'descending':
|
if self.sort_order == 'descending':
|
||||||
element.innerHTML=self.svg_array_down
|
element.innerHTML = self.svg_array_down
|
||||||
else:
|
else:
|
||||||
element.innerHTML=self.svg_array_up
|
element.innerHTML = self.svg_array_up
|
||||||
else:
|
else:
|
||||||
element.innerHTML=self.svg_array_updown
|
element.innerHTML = self.svg_array_updown
|
||||||
|
|
||||||
def set_HTML_defaults(self, clean_oom=True):
|
def set_HTML_defaults(self, clean_oom=True):
|
||||||
"""Reset the HTML document but don't clean elements"""
|
"""Reset the HTML document but don't clean elements"""
|
||||||
@ -1359,11 +1359,11 @@ Killed process 6576 (java) total-vm:33914892kB, anon-rss:20629004kB, file-rss:0k
|
|||||||
v2 = getvalue(column_name, i+1)
|
v2 = getvalue(column_name, i+1)
|
||||||
|
|
||||||
if (not reverse and v1 > v2) or (reverse and v1 < v2):
|
if (not reverse and v1 > v2) or (reverse and v1 < v2):
|
||||||
# Swap the elements
|
# Swap the elements
|
||||||
ps_index[i], ps_index[i+1] = ps_index[i+1], ps_index[i]
|
ps_index[i], ps_index[i+1] = ps_index[i+1], ps_index[i]
|
||||||
|
|
||||||
# Set the flag to True so we'll loop again
|
# Set the flag to True so we'll loop again
|
||||||
swapped = True
|
swapped = True
|
||||||
|
|
||||||
|
|
||||||
OOMDisplayInstance = OOMDisplay()
|
OOMDisplayInstance = OOMDisplay()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user