Merge pull request #6635 from pilou-/debconf

Fix ValueError when selection contains a colon
pull/6642/head
Michael DeHaan 11 years ago
commit ebc9ca9504

@ -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

Loading…
Cancel
Save