Skip to content

Commit

Permalink
Merge pull request #63 from JonasTrampe/topic/fix_wifi_settings
Browse files Browse the repository at this point in the history
Fix incorrect log.put to log.put_output
  • Loading branch information
toklinke authored Oct 20, 2022
2 parents c0e19e8 + 6c17df2 commit 2fd4994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webserver/PyUci.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def __run_command(self, cmd):
if output == '' and proc.poll() is not None:
break
if output:
self._log.put(output.strip())
self._log.put_output(output.strip())
proc.poll()

def enable_ap_wifi(self):
Expand Down

0 comments on commit 2fd4994

Please sign in to comment.