Changeset 4846
- Timestamp:
- 11/18/08 15:34:58 (2 months ago)
- Files:
-
- traclegosscript/anyrelease/traclegos/project.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
traclegosscript/anyrelease/traclegos/project.py
r4292 r4846 35 35 # install the requirements 36 36 for requirement in getattr(self, 'requirements', ()): 37 38 # if the path is relative to the template, give the full path 39 path = os.path.join(self.module_dir(), requirement) 40 if os.path.exists(path): 41 requirement = path 42 37 43 subprocess.call(['poacheggs', '-r', requirement]) 38 44
