From ef4aed0db359e81a875e6e154d73e3ba497f16b4 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 28 Oct 2003 05:50:40 +0000 Subject: [PATCH] Just some slight style things (I'm committing because DannyB will be hacking on it later). --- plugins/Bugzilla.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/plugins/Bugzilla.py b/plugins/Bugzilla.py index 40be81109..2661cee7a 100644 --- a/plugins/Bugzilla.py +++ b/plugins/Bugzilla.py @@ -29,26 +29,26 @@ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. ### + """ Bugzilla bug retriever """ -import urllib -import string -import xml.dom.minidom as minidom -import base64 -import re + import os +import re +import string +import urllib +import base64 +import xml.dom.minidom as minidom from htmlentitydefs import entitydefs as entities -import plugins - -import string +import sqlite +import conf import utils +import plugins import privmsgs import callbacks -import conf -import sqlite dbfilename = os.path.join(conf.dataDir, 'Bugzilla.db') def makeDb(filename):