properly isolate source and target sources entries when merging

This commit is contained in:
Colin Watson 2012-11-07 18:49:18 +00:00
parent 9a714f2213
commit 8974b4d77b

View File

@ -635,7 +635,7 @@ class Britney(object):
for pkg, value in source_sources.items():
if pkg in target_sources:
continue
target_sources[pkg] = value
target_sources[pkg] = list(value)
target_sources[pkg][BINARIES] = list(
target_sources[pkg][BINARIES])