diff options
Diffstat (limited to 'megahal_local.py')
-rw-r--r-- | megahal_local.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/megahal_local.py b/megahal_local.py index b17316f..024d053 100644 --- a/megahal_local.py +++ b/megahal_local.py @@ -4,7 +4,7 @@ import pyPgSQL.PgSQL mh_python.initbrain() -conn = pyPgSQL.PgSQL.connect("") +conn = pyPgSQL.PgSQL.connect(database="omegle") cur = conn.cursor() cur.execute(""" @@ -24,7 +24,7 @@ while True: print "%s%s" % ("\033[2K\033[E",c), mh_python.learn("%s"%message[0]) -print "" +print "all learned" cur.close() conn.close() import sys |