BUGFIX : commit proper objects for release version
authorjaviplx <javiplx@gmail.com>
Sat, 14 May 2011 19:36:58 +0000 (19:36 +0000)
committerjaviplx <javiplx@gmail.com>
Sat, 14 May 2011 19:36:58 +0000 (19:36 +0000)
git-svn-id: file:///svnroot/wifihood/trunk@174 c51dfc6a-5949-4919-9c8e-f207a149c383

wifiscanner/wifiscanner

index 9bd86fb..7fe9bc7 100755 (executable)
@@ -43,14 +43,14 @@ def stop_scan(button, scanner):
     button.set_label("Start scanning")
 
 
-class scanner ( wifimap.ReplayScanner ) :
+class scanner ( wifimap.Scanner ) :
 
     def scan ( self ) :
-        wifimap.ReplayScanner.scan( self )
+        wifimap.Scanner.scan( self )
         self.report()
 
     def report ( self ) :
-        self.status.set_label( wifimap.ReplayScanner.report(self) )
+        self.status.set_label( wifimap.Scanner.report(self) )
         start, end = self.buffer.get_bounds()
         self.buffer.delete( start , end )
         for mac,rss in self.scanlist.iteritems() :