Exemple #1
0
    def __init__(self, path):
        MultiCommandTool.__init__(self)

        self._path = path
        self.bugs = Bugzilla()
        self.buildbot = BuildBot()
        self.executive = Executive()
        self._irc = None
        self.user = User()
        self._scm = None
        self._checkout = None
        self.status_server = StatusServer()
 def __init__(self, host, git_prefix=None, executive=None, cwd=os.getcwd()):
     self.host = host
     self.git_prefix = git_prefix
     self.executive = executive or Executive()
     self.cwd = cwd