[Python-checkins] python/nondist/sandbox/datetime datetime.py,1.89,1.90

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 09 Dec 2002 14:10:56 -0800


Update of /cvsroot/python/python/nondist/sandbox/datetime
In directory sc8-pr-cvs1:/tmp/cvs-serv22685

Modified Files:
	datetime.py 
Log Message:
Another try at spelling "trailig" correctly.


Index: datetime.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/datetime/datetime.py,v
retrieving revision 1.89
retrieving revision 1.90
diff -C2 -d -r1.89 -r1.90
*** datetime.py	9 Dec 2002 22:05:36 -0000	1.89
--- datetime.py	9 Dec 2002 22:10:53 -0000	1.90
***************
*** 155,159 ****
  
  def _format_time(hh, mm, ss, us):
!     # Skip trailng microseconds when us==0.
      result = "%02d:%02d:%02d" % (hh, mm, ss)
      if us:
--- 155,159 ----
  
  def _format_time(hh, mm, ss, us):
!     # Skip trailing microseconds when us==0.
      result = "%02d:%02d:%02d" % (hh, mm, ss)
      if us: