Merge pull request from dadav/fix/limit_ap_name_length

Fix overlapping issue
This commit is contained in:
evilsocket 2019-09-23 15:35:13 +02:00 committed by GitHub
commit d29d99d8ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -253,7 +253,7 @@ class Agent(Client, AsyncAdvertiser, AsyncTrainer):
txt = '%d (%d)' % (len(self._handshakes), tot)
if self._last_pwnd is not None:
txt += ' [%s]' % self._last_pwnd
txt += ' [%s]' % self._last_pwnd[:20]
self._view.set('shakes', txt)