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

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 09 Dec 2002 14:05:39 -0800


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

Modified Files:
	datetime.py 
Log Message:
Fixed typo in comment.


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