Skip to content

Commit

Permalink
Output corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
alpkeskin authored Dec 6, 2020
1 parent 28c88e5 commit 2178f6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/ConfigTree.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ def ConfigTree(verifyApi,socialscan,leakeddb,breachedsites,hunterApi,dbdata,tcrw
lkeddb11 = Node('\x1b[6;30;42m'+leakeddb+ '\x1b[0m', parent=lkeddb1)
else:
lkeddb11 = Node('\x1b[1;31;40m'+'False'+ '\x1b[0m', parent=lkeddb1)
breachedsites = Node("Breached Sites", parent=fileshow)
breachedS = Node("Breached Sites", parent=fileshow)
if (breachedsites != ""):
bs = Node('\x1b[6;30;42m'+'True'+ '\x1b[0m', parent=breachedsites)
bs = Node('\x1b[6;30;42m'+'True'+ '\x1b[0m', parent=breachedS)
else:
bs = Node('\x1b[1;31;40m'+'False'+ '\x1b[0m', parent=breachedsites)
bs = Node('\x1b[1;31;40m'+'False'+ '\x1b[0m', parent=breachedS)
hntr1 = Node("Hunter API", parent=fileshow)
if (hunterApi != ""):
hntr11 = Node('\x1b[6;30;42m'+'True'+ '\x1b[0m', parent=hntr1)
Expand Down

0 comments on commit 2178f6e

Please sign in to comment.