Blame bugzilla/oldclasses.py

Packit Service 4b33e2
# This program is free software; you can redistribute it and/or modify it
Packit Service 4b33e2
# under the terms of the GNU General Public License as published by the
Packit Service 4b33e2
# Free Software Foundation; either version 2 of the License, or (at your
Packit Service 4b33e2
# option) any later version.  See http://www.gnu.org/copyleft/gpl.html for
Packit Service 4b33e2
# the full text of the license.
Packit Service 4b33e2
Packit Service 4b33e2
from .base import Bugzilla
Packit Service 4b33e2
from .rhbugzilla import RHBugzilla
Packit Service 4b33e2
Packit Service 4b33e2
Packit Service 4b33e2
# These are old compat classes. Nothing new should be added here,
Packit Service 4b33e2
# and these should not be altered
Packit Service 4b33e2
Packit Service 4b33e2
class Bugzilla3(Bugzilla): pass
Packit Service 4b33e2
class Bugzilla32(Bugzilla): pass
Packit Service 4b33e2
class Bugzilla34(Bugzilla): pass
Packit Service 4b33e2
class Bugzilla36(Bugzilla): pass
Packit Service 4b33e2
class Bugzilla4(Bugzilla): pass
Packit Service 4b33e2
class Bugzilla42(Bugzilla): pass
Packit Service 4b33e2
class Bugzilla44(Bugzilla): pass
Packit Service 4b33e2
class NovellBugzilla(Bugzilla): pass
Packit Service 4b33e2
class RHBugzilla3(RHBugzilla): pass
Packit Service 4b33e2
class RHBugzilla4(RHBugzilla): pass