Handle empty IPS publishers (#2047)

It turns out it's possible to set up a publisher with no URIs.  Handle
this gracefully.
reviewable/pr18780/r1
Peter Oliver 8 years ago committed by René Moser
parent 067b908415
commit 92301f7451

@ -180,13 +180,14 @@ def get_publishers(module):
publishers[name]['origin'] = []
publishers[name]['mirror'] = []
publishers[name][values['type']].append(values['uri'])
if values['type'] is not None:
publishers[name][values['type']].append(values['uri'])
return publishers
def unstringify(val):
if val == "-":
if val == "-" or val == '':
return None
elif val == "true":
return True

Loading…
Cancel
Save