Merge pull request #6635 from pilou-/debconf
Fix ValueError when selection contains a colon
This commit is contained in:
commit
92a79c185b
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue