From 8073bceeb800881035ee7a46686874c403b72d08 Mon Sep 17 00:00:00 2001 From: pi-rho Date: Sat, 16 Feb 2013 15:50:03 -0600 Subject: [PATCH] bugfix: packet.text not self.text --- extra/start-here.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/start-here.py b/extra/start-here.py index d057962..b6ba646 100644 --- a/extra/start-here.py +++ b/extra/start-here.py @@ -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)