Blame bugzilla/oldclasses.py

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