[Cvsshell-devel] CVS: cvsshell/src cvs_shell.py,1.20,1.21
Status: Beta
Brought to you by:
stefanheimann
From: Stefan H. <ste...@us...> - 2002-03-15 10:44:16
|
Update of /cvsroot/cvsshell/cvsshell/src In directory usw-pr-cvs1:/tmp/cvs-serv7430/src Modified Files: cvs_shell.py Log Message: * removed debug messages * added print-out for root dir of listing Index: cvs_shell.py =================================================================== RCS file: /cvsroot/cvsshell/cvsshell/src/cvs_shell.py,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** cvs_shell.py 15 Mar 2002 10:37:53 -0000 1.20 --- cvs_shell.py 15 Mar 2002 10:44:13 -0000 1.21 *************** *** 372,375 **** --- 372,376 ---- id = 0 lines = [] + self.app.printMsg('Root Directory: ' + os.path.abspath(self.rootDir)) for e in self.entries: newDir = e.dir *************** *** 381,387 **** isDir = '' colorKey = e.getStatusAsColorKey() - print "colorKey = ", colorKey color = self.app.getConfigMap().get(colorKey, '') - print "color = ", color s = self.app.col(color, formatStr % (id, e.status, isDir, e.name)) lines.append(s) --- 382,386 ---- |