mirror of https://github.com/dirtbags/netarch.git
bugfix: packet.text not self.text
This commit is contained in:
parent
4c6a76755c
commit
8073bceeb8
|
@ -81,7 +81,7 @@ class StinkyPinkySession(ip.HtmlSession):
|
|||
self.log(packet.firstframe, packet.html, False)
|
||||
if hasattr(packet, "text") and packet.text is not None:
|
||||
if self.debug:
|
||||
sys.stdout.write(self.text)
|
||||
sys.stdout.write(packet.text)
|
||||
self.log(packet.firstframe, packet.text, True)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue