Merge pull request #475 from xnox/fix-netplan

netplan.Config().config should initialize to a dict
This commit is contained in:
Michael Hudson-Doyle 2019-05-06 09:26:49 +12:00 committed by GitHub
commit c8b3f02e11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class Config:
def __init__(self):
self.devices = []
self.config = []
self.config = {}
def parse_netplan_config(self, config):
try: