We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12e8344 commit 0df80f9Copy full SHA for 0df80f9
m3_sync.py
@@ -242,7 +242,7 @@ def main(self):
242
list_name, self.sync['default_list_domain']))
243
try:
244
# create list by listname or by email address
245
- mlist = domain.create_list(len(str(datas['mail']))>0 ? datas['mail'] : list_name)
+ mlist = domain.create_list( datas['mail'] if len(str(datas['mail']))>0 else list_name)
246
self.set_settings(mlist)
247
except HTTPError as e:
248
print(e)
0 commit comments