summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/buildinfohelper.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/buildinfohelper.py')
-rw-r--r--bitbake/lib/bb/ui/buildinfohelper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py
index fbf75466d0..2b0298e99e 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -180,7 +180,7 @@ class ORMWrapper(object):
180 revision = package_info['PKGR'], 180 revision = package_info['PKGR'],
181 summary = package_info['SUMMARY'], 181 summary = package_info['SUMMARY'],
182 description = package_info['DESCRIPTION'], 182 description = package_info['DESCRIPTION'],
183 size = package_info['PKGSIZE'], 183 size = int(package_info['PKGSIZE']) * 1024,
184 section = package_info['SECTION'], 184 section = package_info['SECTION'],
185 license = package_info['LICENSE'], 185 license = package_info['LICENSE'],
186 ) 186 )