mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 00:32:12 -04:00
Style fix
This commit is contained in:
parent
37e94e631d
commit
0ccbbdb120
1 changed files with 1 additions and 1 deletions
|
|
@ -690,7 +690,7 @@ class HelpfulArgumentParser(object):
|
|||
for domain in domains:
|
||||
dlist.extend([d.strip() for d in domain.split(",")])
|
||||
# Make sure we don't have duplicates
|
||||
uniqd = [d for i,d in enumerate(dlist) if d not in dlist[:i]]
|
||||
uniqd = [d for i, d in enumerate(dlist) if d not in dlist[:i]]
|
||||
|
||||
return uniqd
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue