mirror of
				https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
				synced 2025-10-31 10:48:02 +00:00 
			
		
		
		
	create_chamberview_dut: Fix bare except error
Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
		| @@ -121,10 +121,8 @@ class DUT(dut): | |||||||
|                     self.ssid[j]['security'] = self.ssid[j]['security'].split( |                     self.ssid[j]['security'] = self.ssid[j]['security'].split( | ||||||
|                         '|') |                         '|') | ||||||
|                     for security in self.ssid[j]['security']: |                     for security in self.ssid[j]['security']: | ||||||
|                         try: |                         if security.lower() in flags: | ||||||
|                             flag |= flags[security.lower()] |                             flag |= flags[security.lower()] | ||||||
|                         except BaseException: |  | ||||||
|                             pass |  | ||||||
|                 self.ssid[j]['flag'] = flag |                 self.ssid[j]['flag'] = flag | ||||||
|  |  | ||||||
|                 if 'bssid' not in self.ssid[j].keys(): |                 if 'bssid' not in self.ssid[j].keys(): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Matthew Stidham
					Matthew Stidham