commit 9ba121e859d8c551be08e340728004fa48ec1c4d
Author: Damian Johnson <atagar(a)torproject.org>
Date: Fri Apr 22 19:05:40 2011 -0700
fix: Capitalizing unused cfg option log message
---
src/interface/controller.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/interface/controller.py b/src/interface/controller.py
index 558c107..b88152f 100644
--- a/src/interface/controller.py
+++ b/src/interface/controller.py
@@ -649,7 +649,7 @@ def drawTorMonitor(stdscr, startTime, loggedEvents, isBlindMode):
# provides notice about any unused config keys
for key in config.getUnusedKeys():
- log.log(CONFIG["log.configEntryUndefined"], "unused configuration entry: %s" % key)
+ log.log(CONFIG["log.configEntryUndefined"], "Unused configuration entry: %s" % key)
lastPerformanceLog = 0 # ensures we don't do performance logging too frequently
redrawStartTime = time.time()