diff --git a/britney.py b/britney.py index f3dac30..d7a3650 100755 --- a/britney.py +++ b/britney.py @@ -237,7 +237,7 @@ RDEPENDS = 9 RCONFLICTS = 10 -class Britney: +class Britney(object): """Britney, the Debian testing updater script This is the script that updates the testing distribution. It is executed diff --git a/completer.py b/completer.py index 7a2fb3f..cda4eb5 100644 --- a/completer.py +++ b/completer.py @@ -15,7 +15,7 @@ import readline import bisect -class Completer: +class Completer(object): """Completer class This class provides a readline completer for the britney hint-tester diff --git a/hints.py b/hints.py index 07a9ffa..874c1b3 100644 --- a/hints.py +++ b/hints.py @@ -14,7 +14,7 @@ from migrationitem import HintItem -class HintCollection: +class HintCollection(object): def __init__(self): self._hints = [] @@ -35,7 +35,7 @@ class HintCollection: def add_hint(self, hint, user): self._hints.append(Hint(hint, user)) -class Hint: +class Hint(object): def __init__(self, hint, user): self._hint = hint self._user = user