Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
*.pyc
*.pyc
.venv
.env
.idea/*
4 changes: 2 additions & 2 deletions pwnagotchi/automata.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ def _on_miss(self, who):
self._view.on_miss(who)

def _on_error(self, who, e):
# when we're trying to associate or deauth something that is not in range anymore
# when we're trying to associate or deauth something not in range anymore
# (if we are moving), we get the following error from bettercap:
# error 400: 50:c7:bf:2e:d3:37 is an unknown BSSID or it is in the association skip list.
# error 400: 50:c7:bf:2e:d3:37 is an unknown BSSID, or it is in the association skip list.
if 'is an unknown BSSID' in str(e):
self._on_miss(who)
else:
Expand Down
Loading