From 911213f8d74d34cf4d855a14da6eb34e78f7d4e4 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sat, 11 May 2013 17:21:49 -0400 Subject: [PATCH] Style fix. --- system/setup | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system/setup b/system/setup index e3f99d9c885..85607ef1ab3 100644 --- a/system/setup +++ b/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')):