Changeset 1189 in tailor
- Timestamp:
- 06/25/06 18:38:58 (7 years ago)
- Hash name:
- 20060625163858-130f5-98592d5d52902e3fa0ce28f4fe59652535bca62a
- File:
-
- 1 edited
-
vcpx/repository/git.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/repository/git.py
r1188 r1189 26 26 Repository._load(self, project) 27 27 self.EXECUTABLE = project.config.get(self.name, 'git-command', 'git') 28 self.PARENT_REPO = project.config.get(self.name, 'parent-repo' , '')28 self.PARENT_REPO = project.config.get(self.name, 'parent-repo') 29 29 self.BRANCHPOINT = project.config.get(self.name, 'branchpoint', 'HEAD') 30 30 … … 350 350 351 351 if not exists(join(self.basedir, self.repository.METADIR)): 352 if self.repository.PARENT_REPO == '':352 if not self.repository.PARENT_REPO: 353 353 cmd = self.repository.command("init-db") 354 354 init = ExternalCommand(cwd=self.basedir, command=cmd) … … 414 414 SynchronizableTargetWorkingDir.importFirstRevision( 415 415 self, source_repo, changeset, 416 initial or self. target.PARENT_REPO)416 initial or self.repository.PARENT_REPO)
Note: See TracChangeset
for help on using the changeset viewer.
