Skip to content
Snippets Groups Projects
Commit ea7a14ca authored by Matt Mackall's avatar Matt Mackall
Browse files

bugzilla: lowercase mysqldb var

parent 61c93743
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,7 @@
from mercurial import cmdutil, templater, util
import re, time
MySQLdb = None
mysqldb = None
def buglist(ids):
return '(' + ','.join(map(str, ids)) + ')'
......@@ -165,7 +165,7 @@
self.ui.readconfig(usermap, sections=['usermap'])
self.ui.note(_('connecting to %s:%s as %s, password %s\n') %
(host, db, user, '*' * len(passwd)))
self.conn = MySQLdb.connect(host=host, user=user, passwd=passwd,
self.conn = mysqldb.connect(host=host, user=user, passwd=passwd,
db=db, connect_timeout=timeout)
self.cursor = self.conn.cursor()
self.longdesc_id = self.get_longdesc_id()
......@@ -177,7 +177,7 @@
self.ui.note(_('query: %s %s\n') % (args, kwargs))
try:
self.cursor.execute(*args, **kwargs)
except MySQLdb.MySQLError:
except mysqldb.MySQLError:
self.ui.note(_('failed query: %s %s\n') % (args, kwargs))
raise
......@@ -419,9 +419,9 @@
bugzilla bug id. only add a comment once per bug, so same change
seen multiple times does not fill bug with duplicate data.'''
try:
import MySQLdb as mysql
global MySQLdb
MySQLdb = mysql
import mysqldb as mysql
global mysqldb
mysqldb = mysql
except ImportError, err:
raise util.Abort(_('python mysql support not available: %s') % err)
......@@ -436,6 +436,6 @@
for id in ids:
bz.update(id, ctx)
bz.notify(ids, util.email(ctx.user()))
except MySQLdb.MySQLError, err:
except mysqldb.MySQLError, err:
raise util.Abort(_('database error: %s') % err[1])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment