From: richard Date: Fri, 17 Aug 2001 03:08:11 +0000 (+0000) Subject: fixed prettification of intervals of 1 week X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6bbc898fcaf4c040ef5a5883949157ca9bef9db0;p=roundup.git fixed prettification of intervals of 1 week git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@241 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/date.py b/roundup/date.py index fac763d..da19289 100644 --- a/roundup/date.py +++ b/roundup/date.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: date.py,v 1.11 2001-08-15 23:43:18 richard Exp $ +# $Id: date.py,v 1.12 2001-08-17 03:08:11 richard Exp $ import time, re, calendar @@ -324,7 +324,7 @@ class Interval: else: return '%s weeks'%int(days/7) if self.day > 7: - return '%s weeks'%self.day + return '1 week' if self.day > 1: return '%s days'%self.day if self.day == 1 or self.hour > 12: @@ -376,6 +376,10 @@ if __name__ == '__main__': # # $Log: not supported by cvs2svn $ +# Revision 1.11 2001/08/15 23:43:18 richard +# Fixed some isFooTypes that I missed. +# Refactored some code in the CGI code. +# # Revision 1.10 2001/08/07 00:24:42 richard # stupid typo #