[Cvsshell-devel] CVS: cvsshell/src cvs_shell.py,1.42,1.43
Status: Beta
Brought to you by:
stefanheimann
|
From: Stefan H. <ste...@us...> - 2003-04-20 20:54:42
|
Update of /cvsroot/cvsshell/cvsshell/src
In directory sc8-pr-cvs1:/tmp/cvs-serv23205/src
Modified Files:
cvs_shell.py
Log Message:
the status of 'show-unmodified' is now displayed in the prompt
Index: cvs_shell.py
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/src/cvs_shell.py,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -d -r1.42 -r1.43
*** cvs_shell.py 20 Apr 2003 20:52:05 -0000 1.42
--- cvs_shell.py 20 Apr 2003 20:54:38 -0000 1.43
***************
*** 137,140 ****
--- 137,142 ----
if self.autoRefresh: status += 'r'
else: status += 'R'
+ if self.showUnmodified: status += 'u'
+ else: status += 'U'
root = self.getCvsRoot() or '--'
try:
|