Changeset 189 in tailor for vcpx/svn.py
- Timestamp:
- 12/27/04 22:06:16 (8 years ago)
- Hash name:
- 20041227210616-97f81-a214bf0dfa20faba590b8d4ae217adaf6b64018a
- File:
-
- 1 edited
-
vcpx/svn.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/svn.py
r188 r189 282 282 wdir = join(basedir, subdir) 283 283 284 if not exists(wdir): 284 if not exists(join(wdir, '.svn')): 285 if logger: logger.info("checking out a working copy") 285 286 svnco = SvnCheckout(working_dir=basedir) 286 287 svnco(output=True, repository=repository, module=module, … … 289 290 raise TargetInitializationFailure( 290 291 "'svn checkout' returned status %s" % svnco.exit_status) 292 else: 293 if logger: logger.info("%s already exists, assuming it's a svn working dir" % wdir) 291 294 292 295 svninfo = SvnInfo(working_dir=wdir)
Note: See TracChangeset
for help on using the changeset viewer.
