Code

sf bug 724626
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 23 Apr 2003 11:48:51 +0000 (11:48 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 23 Apr 2003 11:48:51 +0000 (11:48 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1672 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/date.py

index 2a543cdd69788103640d14d06b03f1b424c7bd2d..365aa80b07cc670a641400ea896e0f9a753f8cd0 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: date.py,v 1.53 2003-04-22 20:53:54 kedder Exp $
+# $Id: date.py,v 1.54 2003-04-23 11:48:05 richard Exp $
 
 __doc__ = """
 Date, time and time interval handling.
@@ -603,7 +603,7 @@ class Interval:
         if self.sign < 0: 
             s = s + _(' ago')
         else:
-            s = _('in') + s
+            s = _('in ') + s
         return s
 
     def get_tuple(self):