Needed to import fix and call fix.rsplit instead of utils.rsplit

This commit is contained in:
James Vega 2003-10-08 18:39:44 +00:00
parent 0d8ef3ee6d
commit 18d52f8b27
1 changed files with 2 additions and 1 deletions

View File

@ -46,6 +46,7 @@ import os.path
import urllib2
from itertools import imap, ifilter
import fix
import conf
import utils
import privmsgs
@ -255,7 +256,7 @@ class Debian(callbacks.Privmsg, plugins.PeriodicFileDownloader):
if m:
name = m.group(1)
if all(lambda p: p(name), predicates):
realname = utils.rsplit(name, '_', 1)[0]
realname = fix.rsplit(name, '_', 1)[0]
packages.append(realname)
if len(packages) == 0:
irc.error(msg, 'No packages matched that search.')