Update of /cvsroot/cvsshell/cvsshell/src
In directory usw-pr-cvs1:/tmp/cvs-serv17696
Modified Files:
app.py
Log Message:
Fiexed bug with wrong format string in error message
Index: app.py
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/src/app.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** app.py 7 Mar 2002 11:50:28 -0000 1.2
--- app.py 7 Mar 2002 12:19:37 -0000 1.3
***************
*** 195,203 ****
Python version: %s""" % (self.version, sys.platform, sys.version))
self.printMsg("========== Traceback ends here ==========\n" \
! "You have discovered a bug in %s.") % self.name
if self.bugAddress.find('@') > 0:
! self.printMsg("Please send a bug report to %s," % self.bugAddress)
else:
! self.printMsg("Please fill out a bug report at %s," % self.bugAddress)
self.printMsg("including the traceback above.")
self.closeApp()
--- 195,203 ----
Python version: %s""" % (self.version, sys.platform, sys.version))
self.printMsg("========== Traceback ends here ==========\n" \
! "You have discovered a bug in %s." % self.name)
if self.bugAddress.find('@') > 0:
! self.printMsg("Please send a bug report to \n %s," % self.bugAddress)
else:
! self.printMsg("Please fill out a bug report at \n %s," % self.bugAddress)
self.printMsg("including the traceback above.")
self.closeApp()
|