summaryrefslogtreecommitdiffstats
path: root/scripts/oe-pkgdata-util
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/oe-pkgdata-util')
-rwxr-xr-xscripts/oe-pkgdata-util2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-pkgdata-util b/scripts/oe-pkgdata-util
index 2baa9f4c42..1603dfbc2e 100755
--- a/scripts/oe-pkgdata-util
+++ b/scripts/oe-pkgdata-util
@@ -162,7 +162,7 @@ def read_value(args):
162 with open(pkgdata_file, 'r') as f: 162 with open(pkgdata_file, 'r') as f:
163 for line in f: 163 for line in f:
164 if line.startswith(valuename + ":"): 164 if line.startswith(valuename + ":"):
165 val = line.split(': ')[1].rstrip() 165 val = line.split(': ', 1)[1].rstrip()
166 return val 166 return val
167 167
168 logger.debug("read-value('%s', '%s' '%s'" % (args.pkgdata_dir, args.valuename, packages)) 168 logger.debug("read-value('%s', '%s' '%s'" % (args.pkgdata_dir, args.valuename, packages))