From 10651494f541de8ff38b60ebedf1adfe4116ebff Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 8 Oct 2003 20:56:22 +0000 Subject: [PATCH] Fixed Debian to use fix functions appropriately :) --- plugins/Debian.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/Debian.py b/plugins/Debian.py index 1206c0310..356df913d 100644 --- a/plugins/Debian.py +++ b/plugins/Debian.py @@ -46,7 +46,6 @@ import os.path import urllib2 from itertools import imap, ifilter -import fix import conf import utils import privmsgs @@ -256,7 +255,7 @@ class Debian(callbacks.Privmsg, plugins.PeriodicFileDownloader): if m: name = m.group(1) if all(lambda p: p(name), predicates): - realname = fix.rsplit(name, '_', 1)[0] + realname = rsplit(name, '_', 1)[0] packages.append(realname) if len(packages) == 0: irc.error(msg, 'No packages matched that search.')