This commit is contained in:
mwiegand 2021-06-21 17:32:13 +02:00
parent b678e79920
commit 677aefb8ea
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ class AptSource():
def __init__(self, string):
if search(r'\[.*\]', string):
self.options = {
k:v.split('=') for k,v in (
k:v.split(',') for k,v in (
e.split('=') for e in search(r'\[(.*)\]', string)[1].split()
)
}