auto-t: fix set_neighbor SSID escaping

Before the re-write there was interesting escapes being used for
set_neighbor. Curiously now hostapd fails to set the neighbor due
to these escapes so they have been removed.
This commit is contained in:
James Prestwood 2020-09-11 11:11:28 -07:00 committed by Denis Kenzior
parent d43a640d71
commit 5df28473cb
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ class HostapdCLI:
return [line for line in lines.split('\n') if line]
def set_neighbor(self, addr, ssid, nr):
cmd = self.cmdline + ['set_neighbor', addr, 'ssid=\\""%s"\\"' % ssid, 'nr=%s' % nr]
cmd = self.cmdline + ['set_neighbor', addr, 'ssid="%s"' % ssid, 'nr=%s' % nr]
ctx.start_process(cmd, wait=True)
def send_bss_transition(self, device, nr_list):