p111 - Database.py now works without unnecessary db libs. Configuration.py made executable. stderr now unbuffered.

This commit is contained in:
steffen123
2008-10-04 19:03:02 +01:00
parent 4b432d7ccd
commit f1947bb6cb
5 changed files with 16 additions and 7 deletions
Regular → Executable
View File
+8 -2
View File
@@ -33,11 +33,17 @@ import Configuration
import SQL
# pgdb database module for posgres via DB-API
import psycopg2
try:
import psycopg2
# pgdb uses pyformat. is that fixed or an option?
except:
pass
try:
# mysql bindings
import MySQLdb
import MySQLdb
except:
pass
class Database:
def __init__(self, c, db_name, game):
+1 -1
View File
@@ -38,7 +38,7 @@ import os
import thread
import Queue
errorfile = open('HUD-error.txt', 'w')
errorfile = open('HUD-error.txt', 'w', 0)
sys.stderr = errorfile
# pyGTK modules
+4 -3
View File
@@ -18,8 +18,9 @@
import os
import sys
errorfile = open('fpdb-error.log', 'w')
sys.stderr = errorfile
errorFile = open('fpdb-error.log', 'w', 0)
#errorFileObject = os.fdopen(errorFile)#, 'w', int(1))
sys.stderr = errorFile
import pygtk
pygtk.require('2.0')
@@ -420,7 +421,7 @@ This program is licensed under the AGPL3, see docs"""+os.sep+"agpl-3.0.txt")
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.window.connect("delete_event", self.delete_event)
self.window.connect("destroy", self.destroy)
self.window.set_title("Free Poker DB - version: alpha5, p109")
self.window.set_title("Free Poker DB - version: alpha6, p111")
self.window.set_border_width(1)
self.window.set_size_request(1020,400)
self.window.set_resizable(True)