Merge branch 'master' of git://git.assembla.com/free_poker_tools
This commit is contained in:
commit
8a2a851abc
|
@ -72,8 +72,11 @@ class Importer:
|
||||||
elif self.settings['db-backend'] == 3:
|
elif self.settings['db-backend'] == 3:
|
||||||
if not pgsqlLibFound:
|
if not pgsqlLibFound:
|
||||||
raise fpdb_simple.FpdbError("interface library psycopg2 not found but PostgreSQL selected as backend - please install the library or change the config file")
|
raise fpdb_simple.FpdbError("interface library psycopg2 not found but PostgreSQL selected as backend - please install the library or change the config file")
|
||||||
self.db = psycopg2.connect(self.settings['db-host'], self.settings['db-user'],
|
print self.settings
|
||||||
self.settings['db-password'], self.settings['db-databaseName'])
|
self.db = psycopg2.connect(host = self.settings['db-host'],
|
||||||
|
user = self.settings['db-user'],
|
||||||
|
password = self.settings['db-password'],
|
||||||
|
database = self.settings['db-databaseName'])
|
||||||
elif self.settings['db-backend'] == 4:
|
elif self.settings['db-backend'] == 4:
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user