[Python-checkins] CVS: python/dist/src/Lib pstats.py,1.17,1.18

Martin v. L?wis loewis@users.sourceforge.net
Wed, 06 Jun 2001 22:49:07 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv21211

Modified Files:
	pstats.py 
Log Message:
Patch #416220: Fix misplaced paren.


Index: pstats.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pstats.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** pstats.py	2001/05/11 19:21:41	1.17
--- pstats.py	2001/06/07 05:49:05	1.18
***************
*** 614,618 ****
                      return
                  self.prompt = line + "% "
!             elif len(self.prompt > 2):
                  line = self.prompt[-2:]
              else:
--- 614,618 ----
                      return
                  self.prompt = line + "% "
!             elif len(self.prompt) > 2:
                  line = self.prompt[-2:]
              else: