From a04590920eaa46e094fd94f0dc44db182a16f7a7 Mon Sep 17 00:00:00 2001
From: sponge <sponge@mail.i2p>
Date: Fri, 14 Sep 2012 02:54:36 +0000
Subject: [PATCH] Remove two messages that won't be seen.

---
 netdb.i2p2/fixedapp.py | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/netdb.i2p2/fixedapp.py b/netdb.i2p2/fixedapp.py
index 8bfcc2330..ddaa4e6ea 100644
--- a/netdb.i2p2/fixedapp.py
+++ b/netdb.i2p2/fixedapp.py
@@ -36,9 +36,9 @@ import pyodbc
 
 # db format
 #
-#  table client ipaddress, time of access, file list index
+#  table client ipaddress, time of access
 #
-#  table html index, time of creation, html
+#  table html index, time of creation
 
 
 #
@@ -52,15 +52,13 @@ def checkdatabase():
     try:
         cur.execute("select * from client")
     except pyodbc.Error:
-        #cur.execute("create table peer (ip string, time string, index string)")
-        print ("Creating new table 'client'")
+        #print ("Creating new table 'client'")
         cur.execute("create table client (ip string, whn float)")
         cnxn.commit()
     try:
         cur.execute("select * from entry")
     except pyodbc.Error:
-        #cur.execute("create table peer (ip string, time string, index string)")
-        print ("Creating new table 'entry'")
+        #print ("Creating new table 'entry'")
         cur.execute("create table entry (whn float, wht string)")
         cnxn.commit()
     cnxn.close()
-- 
GitLab