Unknown update list gives empty string.

This commit is contained in:
ncoop 2016-04-13 13:05:12 -07:00
parent 51675430b1
commit 48273a8205

View File

@ -113,9 +113,9 @@ class Updates(Module):
for backend in self.backends:
key = backend.__class__.__name__
if key not in self.data:
self.data[key] = '?'
self.data[key] = "?"
if key not in self.notif_body:
self.notif_body[key] = '?'
self.notif_body[key] = ""
self.output = {
"full_text": formatp(self.format_working, **self.data).strip(),