Just some slight style things (I'm committing because DannyB will be hacking on it later).

This commit is contained in:
Jeremy Fincher 2003-10-28 05:50:40 +00:00
parent c2f179cd0d
commit ef4aed0db3

View File

@ -29,26 +29,26 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
""" """
Bugzilla bug retriever Bugzilla bug retriever
""" """
import urllib
import string
import xml.dom.minidom as minidom
import base64
import re
import os import os
import re
import string
import urllib
import base64
import xml.dom.minidom as minidom
from htmlentitydefs import entitydefs as entities from htmlentitydefs import entitydefs as entities
import plugins import sqlite
import string
import conf
import utils import utils
import plugins
import privmsgs import privmsgs
import callbacks import callbacks
import conf
import sqlite
dbfilename = os.path.join(conf.dataDir, 'Bugzilla.db') dbfilename = os.path.join(conf.dataDir, 'Bugzilla.db')
def makeDb(filename): def makeDb(filename):