Changeset 171 in tailor
- Timestamp:
- 11/30/04 16:37:03 (8 years ago)
- Hash name:
- 20041130153703-97f81-94678bda20e537d6c39fb0a2c1d98eff080088f6
- Files:
-
- 2 edited
-
tailor.py (modified) (1 diff)
-
vcpx/cvsps.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tailor.py
r160 r171 44 44 main(module='vcpx.tests', argv=sys.argv) 45 45 else: 46 from vcpx.tailor import main 47 46 from vcpx.tailor import main, ExistingProjectError, ProjectNotTailored 47 from vcpx.target import TargetInitializationFailure 48 48 49 if len(sys.argv) == 1: 49 50 sys.argv.append('--help') 51 52 try: 53 main() 54 except ExistingProjectError, exc: 55 print exc 56 except UnknownProjectError, exc: 57 print exc 58 except TargetInitializationFailure, exc: 59 print exc 50 60 51 main() -
vcpx/cvsps.py
r166 r171 330 330 if not found: 331 331 raise TargetInitializationFailure( 332 "Something went wrong , did not find the right cvsps"333 "revision in '%s'" % wdir)332 "Something went wrong: unable to determine the exact upstream " 333 "revision of the checked out tree in '%s'" % wdir) 334 334 else: 335 335 if logger: logger.info("working copy up to cvsps revision %s",
Note: See TracChangeset
for help on using the changeset viewer.
