Roundup Tracker - Issues

Message758

Author rouilj
Recipients
Date 2003-04-20.15:52:21
Message-id
In-reply-to
When I call date.py's Date.pretty(), I get "in1 month" rather then "in 
1 month". The fix it to add a space between
the in literal and the 
string. Here is the patch:

--- /tmp/date.py.orig   2003-04-20 
11:47:12.000000000 -0400
+++ 
/tools/roundup/lib/python2.2/site-packages/roundup/date.py  
2003-04-20 11:49:55.000000000 -0400
@@ -576,7 +576,7 
@@
         if self.sign < 0: 
             s = s + _(' ago')
         else:
-            s = _('in') + 
s
+            s = _('in') + ' ' + s
         return s
 
     def get_tuple(self):
History
Date User Action Args
2009-02-03 14:20:20adminlinkissue724626 messages
2009-02-03 14:20:20admincreate