Integerize the memory variable

This commit is contained in:
Joshua Boniface 2018-07-17 21:55:38 -04:00
parent 0fd8ecc019
commit 6a193ac5eb
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class VMInstance:
def getmemory(self): def getmemory(self):
try: try:
memory = self.dom.info()[2] / 1024 memory = int(self.dom.info()[2] / 1024)
except: except:
memory = 0 memory = 0