Fix monitor interface consistency issue

This commit is contained in:
derv82
2015-06-01 09:11:20 -07:00
parent c298be6bd2
commit 9a8dec818e
2 changed files with 9 additions and 5 deletions

View File

@@ -39,10 +39,10 @@ class Scanner(object):
[len(t.clients)
for t in self.targets])
Color.p(
"\r{+} scanning, " +
"found {G}%d{W} target(s)," % target_count +
" {G}%d{W} clients" % client_count +
". {O}Ctrl+C{W} when ready")
'\r{+} scanning, found' +
' {G}%d{W} target(s),' % target_count +
' {G}%d{W} clients.' % client_count +
' {O}Ctrl+C{W} when ready')
sleep(1)
self.targets = airodump.get_targets()
self.print_targets()