mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
Fixed issue #27
This commit is contained in:
parent
d56ec3c1da
commit
5d785cb862
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ class Client(object):
|
|||
# found within the config to self.names
|
||||
# Then filters them based on user selection
|
||||
code, self.names = display.filter_names(self.get_all_names())
|
||||
if code == display.OK:
|
||||
if code == display.OK and self.names:
|
||||
# TODO: Allow multiple names once it is setup
|
||||
self.names = [self.names[0]]
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue