[or-cvs] r22639: {arm} fix: key mismatch introduced with the last checkin (arm/trunk/interface)

Damian Johnson atagar1 at gmail.com
Wed Jul 14 14:45:49 UTC 2010


Author: atagar
Date: 2010-07-14 14:45:49 +0000 (Wed, 14 Jul 2010)
New Revision: 22639

Modified:
   arm/trunk/interface/controller.py
Log:
fix: key mismatch introduced with the last checkin



Modified: arm/trunk/interface/controller.py
===================================================================
--- arm/trunk/interface/controller.py	2010-07-14 14:31:45 UTC (rev 22638)
+++ arm/trunk/interface/controller.py	2010-07-14 14:45:49 UTC (rev 22639)
@@ -524,7 +524,7 @@
       stdscr.refresh()
       
       currentTime = time.time()
-      if currentTime - lastPerformanceLog >= CONFIG["features.logRefreshRate"]:
+      if currentTime - lastPerformanceLog >= CONFIG["logging.rate.refreshRate"]:
         log.log(CONFIG["log.refreshRate"], "refresh rate: %0.3f seconds" % (currentTime - redrawStartTime))
         lastPerformanceLog = currentTime
     finally:



More information about the tor-commits mailing list