diff --git a/system/debconf b/system/debconf index 244561973db..4ffefc8acec 100644 --- a/system/debconf +++ b/system/debconf @@ -96,7 +96,7 @@ def get_selections(module, pkg): selections = {} for line in out.splitlines(): - (key, value) = line.split(':') + (key, value) = line.split(':', 1) selections[ key.strip('*').strip() ] = value.strip() return selections