diff --git a/library/system/debconf b/library/system/debconf index 244561973d..4ffefc8ace 100644 --- a/library/system/debconf +++ b/library/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