Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1814,7 +1814,7 @@ def create_robo_report(self):
'Duration (in Minutes)': self.duration if not self.do_bandsteering else "NA",
'Resolution': self.resolution,
'Configured Devices': self.hostname_os_combination,
'No of Devices :': f' Total({len(self.real_sta_os_types)}) : W({self.windows}),L({self.linux}),M({self.mac})',
'No of Devices :': f' Total({len(self.real_sta_os_types)}) : W({self.windows}),L({self.linux}),M({self.mac}),A({self.android})',
"Video URL": self.url,
"SSID": self.ssid,
"Security": self.security,
Expand All @@ -1831,7 +1831,7 @@ def create_robo_report(self):
'Resolution': self.resolution,
"Configuration": gp_map,
'Configured Devices': self.hostname_os_combination,
'No of Devices :': f' Total({len(self.real_sta_os_types)}) : W({self.windows}),L({self.linux}),M({self.mac})',
'No of Devices :': f' Total({len(self.real_sta_os_types)}) : W({self.windows}),L({self.linux}),M({self.mac}),A({self.android})',
"Video URL": self.url,

}
Expand All @@ -1841,7 +1841,7 @@ def create_robo_report(self):
'Duration (in Minutes)': self.duration if not self.do_bandsteering else "NA",
'Resolution': self.resolution,
'Configured Devices': self.hostname_os_combination,
'No of Devices :': f' Total({len(self.real_sta_os_types)}) : W({self.windows}),L({self.linux}),M({self.mac})',
'No of Devices :': f' Total({len(self.real_sta_os_types)}) : W({self.windows}),L({self.linux}),M({self.mac}),A({self.android})',
"Video URL": self.url,

}
Expand Down
Loading