From 95c9e14469b6ce4dd23723e9d5d7aabf3190ca38 Mon Sep 17 00:00:00 2001 From: Tobias Mueller Date: Thu, 13 Jan 2011 16:48:36 +0100 Subject: [PATCH] Fixed a "device not find" name error --- pwnitter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pwnitter.py b/pwnitter.py index faca125..6995b0a 100755 --- a/pwnitter.py +++ b/pwnitter.py @@ -41,8 +41,9 @@ class Pwnitter(dbus.service.Object): in_signature='', out_signature='') def Start(self, filename=None): # FIXME: Prevent double Start() + device = self.device if filename is None: # Then we do *not* want to read from a PCap file but rather a monitor device - self.setup_monitor(self.device) + self.setup_monitor(device) self.is_running = True try: self.cap = pcap.pcap(device) -- 1.7.9.5