Update of /cvsroot/cvsshell/cvsshell/src
In directory usw-pr-cvs1:/tmp/cvs-serv1639
Modified Files:
cvs_cmds.py
Log Message:
changed ``up-to-date'' in status command into ``OK''
Index: cvs_cmds.py
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/src/cvs_cmds.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** cvs_cmds.py 29 Jul 2002 17:29:10 -0000 1.14
--- cvs_cmds.py 4 Aug 2002 17:28:42 -0000 1.15
***************
*** 77,80 ****
--- 77,81 ----
name = headRes.group('name')
status = headRes.group('status').strip()
+ if status == 'up-to-date': status = Entry.S_OK
i = i+1 # skip empty line
workingRev = regexWorkingRev.search(lines[i]).group(1)
|