Fix ValueError when selection contains a colon

This commit is contained in:
Pierre-Louis Bonicoli 2014-03-23 03:35:10 +01:00
parent 3e6bf9640c
commit 1bb5b0f6bd

View file

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