host details cpu bug fixed

This commit is contained in:
catborise
2018-06-29 15:09:01 +03:00
parent 20e8b876e4
commit 6a7f30d4a6
2 changed files with 1 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ def cpu_version(doc):
for info in doc.xpath('/sysinfo/processor/entry'):
elem = info.xpath('@name')[0]
if elem == 'version':
return info
return info.text
return 'Unknown'