[tor-commits] [bridgedb/master] 5482 - Use info loglevel

aagbsn at torproject.org aagbsn at torproject.org
Wed Apr 17 00:26:44 UTC 2013


commit f3ade3c6c5d057c93c6365400008b98bd4a9f908
Author: aagbsn <aagbsn at extc.org>
Date:   Tue Oct 30 07:22:09 2012 -0700

    5482 - Use info loglevel
---
 lib/bridgedb/Storage.py |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/bridgedb/Storage.py b/lib/bridgedb/Storage.py
index 056dc4d..b9255d5 100644
--- a/lib/bridgedb/Storage.py
+++ b/lib/bridgedb/Storage.py
@@ -401,7 +401,8 @@ class Database:
         cur = self._cur
         cur.execute("SELECT * FROM BridgeHistory WHERE fingerprint = ?", (fp,))
         h = cur.fetchone()
-        if h is None: return None
+        if h is None: 
+            return
         return BridgeHistory(h[0],IPAddress(h[1]),h[2],h[3],h[4],h[5],h[6],h[7],h[8],h[9])
 
     def getAllBridgeHistory(self):
@@ -447,7 +448,7 @@ def openDatabase(sqlite_file):
             cur.execute("SELECT value FROM Config WHERE key = 'schema-version'")
             val, = cur.fetchone()
             if val == 2:
-                logging.notice("Adding new table BridgeHistory")
+                logging.info("Adding new table BridgeHistory")
                 cur.executescript(SCHEMA_2TO3_SCRIPT)
             elif val != 3:
                 logging.warn("Unknown schema version %s in database.", val)





More information about the tor-commits mailing list