diff --git a/library/system/setup b/library/system/setup index e3f99d9c885..85607ef1ab3 100644 --- a/library/system/setup +++ b/library/system/setup @@ -1067,7 +1067,8 @@ class LinuxNetwork(Network): ) for path in glob.glob('/sys/class/net/*'): - if not os.path.isdir(path): continue + if not os.path.isdir(path): + continue device = os.path.basename(path) interfaces[device] = { 'device': device } if os.path.exists(os.path.join(path, 'address')):