mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Fixed Debian to use fix functions appropriately :)
This commit is contained in:
parent
d1bc7d462a
commit
10651494f5
@ -46,7 +46,6 @@ import os.path
|
|||||||
import urllib2
|
import urllib2
|
||||||
from itertools import imap, ifilter
|
from itertools import imap, ifilter
|
||||||
|
|
||||||
import fix
|
|
||||||
import conf
|
import conf
|
||||||
import utils
|
import utils
|
||||||
import privmsgs
|
import privmsgs
|
||||||
@ -256,7 +255,7 @@ class Debian(callbacks.Privmsg, plugins.PeriodicFileDownloader):
|
|||||||
if m:
|
if m:
|
||||||
name = m.group(1)
|
name = m.group(1)
|
||||||
if all(lambda p: p(name), predicates):
|
if all(lambda p: p(name), predicates):
|
||||||
realname = fix.rsplit(name, '_', 1)[0]
|
realname = rsplit(name, '_', 1)[0]
|
||||||
packages.append(realname)
|
packages.append(realname)
|
||||||
if len(packages) == 0:
|
if len(packages) == 0:
|
||||||
irc.error(msg, 'No packages matched that search.')
|
irc.error(msg, 'No packages matched that search.')
|
||||||
|
Loading…
Reference in New Issue
Block a user