mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-11 12:42:34 +01:00
Fix previous commit.
This commit is contained in:
parent
216c5d213f
commit
5b9e07ecd2
@ -47,7 +47,6 @@ from supybot.commands import *
|
|||||||
import supybot.irclib as irclib
|
import supybot.irclib as irclib
|
||||||
import supybot.plugin as plugin
|
import supybot.plugin as plugin
|
||||||
import supybot.plugins as plugins
|
import supybot.plugins as plugins
|
||||||
import supybot.minisix as minisix
|
|
||||||
import supybot.drivers as drivers
|
import supybot.drivers as drivers
|
||||||
import supybot.ircmsgs as ircmsgs
|
import supybot.ircmsgs as ircmsgs
|
||||||
import supybot.ircutils as ircutils
|
import supybot.ircutils as ircutils
|
||||||
@ -399,7 +398,7 @@ class Owner(callbacks.Plugin):
|
|||||||
L.append(format('linecache line cache flushed: %n cleared.',
|
L.append(format('linecache line cache flushed: %n cleared.',
|
||||||
(len(linecache.cache), 'line')))
|
(len(linecache.cache), 'line')))
|
||||||
linecache.clearcache()
|
linecache.clearcache()
|
||||||
if minisix.PY2:
|
if sys.version_info[0] >= 3:
|
||||||
sys.exc_clear()
|
sys.exc_clear()
|
||||||
collected = world.upkeep()
|
collected = world.upkeep()
|
||||||
if gc.garbage:
|
if gc.garbage:
|
||||||
|
Loading…
Reference in New Issue
Block a user