powertop2tuned: added support for wakeup tuning (in powertop-2.10)
Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
This commit is contained in:
parent
e8393c5c0a
commit
7a2e3c050a
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ class PowertopHTMLParser(HTMLParser):
|
|||
|
||||
def handle_starttag(self, tag, attrs):
|
||||
self.lastStartTag = tag
|
||||
if self.lastStartTag == "div" and dict(attrs).get("id") == "tuning":
|
||||
if self.lastStartTag == "div" and dict(attrs).get("id") in ["tuning", "wakeup"]:
|
||||
self.inProperTable = True
|
||||
if self.inProperTable and tag == "td":
|
||||
self.tdCounter += 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue