Bugtracker: Add Python 3 support (by Mattia Rizzolo)
This commit is contained in:
@ -2,6 +2,7 @@
|
||||
###
|
||||
# Copyright (c) 2005-2007 Dennis Kaarsemaker
|
||||
# Copyright (c) 2008-2010 Terence Simpson
|
||||
# Copyright (c) 2017- Krytarik Raido
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of version 2 of the GNU General Public License as
|
||||
@ -21,19 +22,22 @@ This plugin will display bug information when requested.
|
||||
import supybot
|
||||
import supybot.world as world
|
||||
|
||||
__version__ = "2.5.1"
|
||||
__author__ = supybot.Author("Terence Simpson", "tsimpson", "tsimpson@ubuntu.com")
|
||||
__contributors__ = {
|
||||
supybot.Author("Dennis Kaarsemaker","Seveas","dennis@kaarsemaker.net"): ['Original Author']
|
||||
}
|
||||
__url__ = 'https://launchpad.net/ubuntu-bots/'
|
||||
from imp import reload
|
||||
|
||||
import config
|
||||
__version__ = "2.6.0"
|
||||
__author__ = supybot.Author("Krytarik Raido", "krytarik", "krytarik@tuxgarage.com")
|
||||
__contributors__ = {
|
||||
supybot.Author("Dennis Kaarsemaker", "Seveas", "dennis@kaarsemaker.net"): ['Original Author'],
|
||||
supybot.Author("Terence Simpson", "tsimpson", "tsimpson@ubuntu.com"): ['Original Author']
|
||||
}
|
||||
__url__ = 'https://launchpad.net/ubuntu-bots'
|
||||
|
||||
from . import config
|
||||
reload(config)
|
||||
import plugin
|
||||
from . import plugin
|
||||
reload(plugin)
|
||||
|
||||
if world.testing:
|
||||
import test
|
||||
from . import test
|
||||
Class = plugin.Class
|
||||
configure = config.configure
|
||||
|
Reference in New Issue
Block a user