Skip to content

Commit

Permalink
Fixing one of the bugs
Browse files Browse the repository at this point in the history
Stupid bugs
  • Loading branch information
dylnuge committed Nov 12, 2012
1 parent 44705bf commit 0d0884f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vending/Db.py
Expand Up @@ -41,7 +41,7 @@ def connect(self):
log(Log.Verbose, "db-mysql", "Connecting to MySQL 'vote' server (%s)." % getConfig("db_mysql_vote_server"))
self.vote_database =MySQLdb.connect(getConfig("db_mysql_vote_server"), getConfig("db_mysql_vote_user"), getConfig("db_mysql_vote_password"))

log(Log.Verbose, "db-mysql", "Attaching to databases - user: %s, vend: %s, vote: %s." % (getConfig("db_mysql_user_db"), getConfig("db_mysql_vend_db"), getConfig("db_mysql_vote_db"))
log(Log.Verbose, "db-mysql", "Attaching to databases - user: %s, vend: %s, vote: %s." % (getConfig("db_mysql_user_db"), getConfig("db_mysql_vend_db"), getConfig("db_mysql_vote_db")))


self.user_database.select_db(getConfig("db_mysql_user_db"))
Expand Down

0 comments on commit 0d0884f

Please sign in to comment.