"Scanner" allow selection of targets

Made Configuration static so it can be called from anywhere.
Thing's awesome, yo.
This commit is contained in:
derv82
2015-05-28 19:36:58 -07:00
parent b22de11df7
commit 03509d436e
5 changed files with 125 additions and 12 deletions

View File

@@ -43,6 +43,11 @@ class Wash(object):
# Update the WPS flag
t.wps = True
# Mark other targets as "no" wps support
for t in targets:
if t.wps: continue
t.wps = False
if __name__ == '__main__':
from Target import Target