Update of /cvsroot/cvsshell/cvsshell/src
In directory usw-pr-cvs1:/tmp/cvs-serv3742/src
Modified Files:
cvs_cmds.py
Log Message:
Fixed problem with remove command
Index: cvs_cmds.py
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/src/cvs_cmds.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** cvs_cmds.py 15 Mar 2002 18:58:00 -0000 1.6
--- cvs_cmds.py 15 Mar 2002 20:16:01 -0000 1.7
***************
*** 347,352 ****
for e in toDeleteListing.entries:
e.status = Entry.S_DELETED
! app.runCvsCmd('commit', rootDir=toDeleteListing.getRootDir(),
! fork=0, args=args)
--- 347,354 ----
for e in toDeleteListing.entries:
e.status = Entry.S_DELETED
! try:
! app.runCvsCmd('commit', rootDir=toDeleteListing.getRootDir(),
! fork=0, args=args)
! except CvsError: pass
|