Skip to content

Commit 2c89685

Browse files
author
Richard Jones
committed
[SF#724626]
1 parent 7cc013d commit 2c89685

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/date.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: date.py,v 1.53 2003-04-22 20:53:54 kedder Exp $
18+
# $Id: date.py,v 1.54 2003-04-23 11:48:05 richard Exp $
1919

2020
__doc__ = """
2121
Date, time and time interval handling.
@@ -603,7 +603,7 @@ def pretty(self):
603603
if self.sign < 0:
604604
s = s + _(' ago')
605605
else:
606-
s = _('in') + s
606+
s = _('in ') + s
607607
return s
608608

609609
def get_tuple(self):

0 commit comments

Comments
 (0)