During the change made on r4792, I (lmr) forgot to change the call to the git parent class to use super(). Let's fix that.
Signed-off-by: Frank Becker <[email protected]> Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- server/git_kernel.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/server/git_kernel.py b/server/git_kernel.py index 015e3c0..0297646 100644 --- a/server/git_kernel.py +++ b/server/git_kernel.py @@ -17,7 +17,7 @@ class GitKernel(git.InstallableGitRepo): is up-to-date, if not update and then build the kernel from the git repo. """ def __init__(self, repodir, giturl, weburl): - git.GitRepo.__init__(self, repodir, giturl, weburl) + super(GitKernel, self).__init__(repodir, giturl, weburl) self._patches = [] self._config = None self._build = None -- 1.7.2.3 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
