Commit c6cd38b3 authored by Vincent Pelletier's avatar Vincent Pelletier

Drop unneeded inheritance.

parent 5df3c416
......@@ -32,7 +32,6 @@ import sys
import threading
from testnode import SubprocessError
from ProcessManager import ProcessManager
SVN_UP_REV = re.compile(r'^(?:At|Updated to) revision (\d+).$')
SVN_CHANGED_REV = re.compile(r'^Last Changed Rev.*:\s*(\d+)', re.MULTILINE)
......@@ -41,7 +40,7 @@ SVN_CHANGED_REV = re.compile(r'^Last Changed Rev.*:\s*(\d+)', re.MULTILINE)
GIT_TYPE = 'git'
SVN_TYPE = 'svn'
class Updater(ProcessManager):
class Updater(object):
_git_cache = {}
stdin = file(os.devnull)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment