1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-19 08:15:49 +00:00

Allow multiple files in CLI syntax

This commit is contained in:
Otto Winter
2019-07-01 11:09:06 +02:00
parent 59091100e4
commit 894ec07cc8
3 changed files with 24 additions and 17 deletions

View File

@@ -59,7 +59,7 @@ class DashboardSettings(object):
self.password_digest = hmac.new(args.password).digest()
else:
self.password_digest = hmac.new(args.password.encode()).digest()
self.config_dir = args.configuration
self.config_dir = args.configuration[0]
@property
def relative_url(self):