Mercurial > p > roundup > code
changeset 1601:df49c7d31073 maint-0.5
[SF#724626]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 23 Apr 2003 11:48:51 +0000 |
| parents | 905f92b97d4e |
| children | 5a2a89a2f4aa |
| files | roundup/date.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/date.py Mon Mar 24 04:53:15 2003 +0000 +++ b/roundup/date.py Wed Apr 23 11:48:51 2003 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: date.py,v 1.40.2.1 2003-03-06 04:37:51 richard Exp $ +# $Id: date.py,v 1.40.2.2 2003-04-23 11:48:51 richard Exp $ __doc__ = """ Date, time and time interval handling. @@ -543,7 +543,7 @@ if self.sign < 0: s = s + _(' ago') else: - s = _('in') + s + s = _('in ') + s return s def get_tuple(self):
