Reversed the arguments to makeChannelFilename.

This commit is contained in:
Jeremy Fincher 2004-08-20 05:14:34 +00:00
parent 9d320188d1
commit 403afe653a

View File

@ -91,7 +91,7 @@ conf.registerChannelValue(conf.supybot.plugins.URL, 'nonSnarfingRegexp',
class URLDB(object):
def __init__(self, channel, log):
self.log = log
self.filename = plugins.makeChannelFilename('URL.db', channel)
self.filename = plugins.makeChannelFilename(channel, 'URL.db')
def _getFile(self):
try: