Changeset 233 in tailor for vcpx/svn.py
- Timestamp:
- 03/22/05 18:31:53 (8 years ago)
- Hash name:
- 20050322173153-97f81-ec7b53123e3a9635cdea9d363c2920fd8db31d20
- File:
-
- 1 edited
-
vcpx/svn.py (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/svn.py
r215 r233 12 12 __docformat__ = 'reStructuredText' 13 13 14 from shwrap import SystemCommand 14 from shwrap import SystemCommand, shrepr 15 15 from source import UpdatableSourceWorkingDir, \ 16 16 ChangesetApplicationFailure, GetUpstreamChangesetsFailure … … 310 310 svnco = SvnCheckout(working_dir=basedir) 311 311 svnco(output=True, repository=repository, module=module, 312 wc=s ubdir, revision=revision)312 wc=shrepr(subdir), revision=revision) 313 313 if svnco.exit_status: 314 314 raise TargetInitializationFailure( … … 339 339 340 340 c = SvnAdd(working_dir=root) 341 c(entry=' '.join([ e.namefor e in entries]))341 c(entry=' '.join([shrepr(e.name) for e in entries])) 342 342 343 343 def _commit(self,root, date, author, remark, changelog=None, entries=None): … … 354 354 355 355 if entries: 356 entries = ' '.join( entries)356 entries = ' '.join([shrepr(e) for e in entries]) 357 357 else: 358 358 entries = '.' … … 366 366 367 367 c = SvnRemove(working_dir=root) 368 c(entry=' '.join([ e.namefor e in entries]))368 c(entry=' '.join([shrepr(e.name) for e in entries])) 369 369 370 370 def _renameEntry(self, root, oldentry, newentry): … … 374 374 375 375 c = SvnMv(working_dir=root) 376 c(old= oldentry, new=newentry)376 c(old=shrepr(oldentry), new=repr(newentry)) 377 377 378 378 def _initializeWorkingDir(self, root, repository, module, subdir, addentry=None):
Note: See TracChangeset
for help on using the changeset viewer.
