summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorlmr <lmr@592f7852-d20e-0410-864c-8624ca9c26a4>2010-09-26 17:14:03 +0000
committerlmr <lmr@592f7852-d20e-0410-864c-8624ca9c26a4>2010-09-26 17:14:03 +0000
commitaa93deb3cdd8cd2b9602049c93b20ec3328eaafd (patch)
tree395c9d1a4e0ec724a34a83b4ede8d184e4d573f7 /server
parentce188994f1e38a528720f16aa9b034fddcd83a30 (diff)
server/git_kernel.py - Fix __init__ call in GitKernel
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 <fb@alien8.de> Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com> git-svn-id: svn://test.kernel.org/autotest/trunk@4810 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'server')
-rw-r--r--server/git_kernel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/git_kernel.py b/server/git_kernel.py
index 015e3c0c..02976464 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