mirror of
https://github.com/munki/munki.git
synced 2026-05-08 05:19:31 -05:00
Properly convert Adobe installsize into an integer. Addresses #974
This commit is contained in:
@@ -156,7 +156,7 @@ def get_payload_info(dirpath):
|
||||
installsize = ''
|
||||
for node in totalsizes[0].childNodes:
|
||||
installsize += node.nodeValue
|
||||
payloadinfo['installed_size'] = int(installsize/1024)
|
||||
payloadinfo['installed_size'] = int(int(installsize)/1024)
|
||||
|
||||
return payloadinfo
|
||||
|
||||
|
||||
Reference in New Issue
Block a user