Skip to content
Snippets Groups Projects
Commit fccf9fa5 authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed too long line

parent 0dd6ed5e
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,10 @@ class Handler(HostHandler):
# we must refresh those tags only when domains tags are registered to
# have the calculated values
for tag in ('cpualloc', 'cpurunning', 'cpuremaining', 'cpuallocratio', 'memalloc', 'memrunning', 'memremaining', 'memallocratio'):
tags_to_refresh = ('cpualloc', 'cpurunning', 'cpuremaining',
'cpuallocratio', 'memalloc', 'memrunning',
'memremaining', 'memallocratio')
for tag in tags_to_refresh:
self.tag_db['__main__'][tag].update_value()
# register libvirt handlers
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment