Added an space between code and comments in order to follow the coding standars

pull/4420/head
Cristobal Rosa 2013-09-27 23:29:05 +02:00
parent be279295b6
commit 617f7bb0a0
1 changed files with 1 additions and 1 deletions

View File

@ -1440,7 +1440,7 @@ class LinuxNetwork(Network):
path = os.path.join(path, 'bonding', 'all_slaves_active') path = os.path.join(path, 'bonding', 'all_slaves_active')
if os.path.exists(path): if os.path.exists(path):
interfaces[device]['all_slaves_active'] = open(path).read() == '1' interfaces[device]['all_slaves_active'] = open(path).read() == '1'
#Check whether a interface is in promiscuous mode # Check whether a interface is in promiscuous mode
if os.path.exists(os.path.join(path,'flags')): if os.path.exists(os.path.join(path,'flags')):
promisc_mode = False promisc_mode = False
# The second byte indicates whether the interface is in promiscuous mode. # The second byte indicates whether the interface is in promiscuous mode.