Пример #1
0
 def __init__(self, *args):
     """
     Initialize git client to None (will be set later)
     All the real logic is in the setup_repo and create_working_copy methods
     """
     self.client = None
     FileRepository.__init__(self, *args)
Пример #2
0
 def __init__(self, *args):
     """
     Initialize mercurial client to None (will be set later)
     All the real logic is in the setup_repo and create_working_copy methods
     """
     self.client = None
     FileRepository.__init__(self, *args)
Пример #3
0
 def __init__(self, *args):
     """
     Initialize git client to None (will be set later)
     All the real logic is in the setupRepo and createWorkingCopy methods
     """
     self.client = None
     FileRepository.__init__(self, *args)
Пример #4
0
 def __init__(self, *args):
     """
     Set self.client to None. Real logic is in setup_repo and create_working_copy
     """
     self.client = None
     FileRepository.__init__(self, *args)
Пример #5
0
 def __init__(self, *args):
     """
     Set self.client to None. Real logic is in setup_repo and create_working_copy
     """
     self.client = None
     FileRepository.__init__(self, *args)