diff tests/get-with-headers.py @ 9722:4d9dea174b84

templater: readable dates older than 24 months revert to ISO8601 (issue1006)
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Thu, 05 Nov 2009 15:19:54 +0100
parents d5ebcf8f6855
children 13a1b2fb7ef2
line wrap: on
line diff
--- a/tests/get-with-headers.py	Thu Nov 05 14:44:29 2009 +0100
+++ b/tests/get-with-headers.py	Thu Nov 05 15:19:54 2009 +0100
@@ -22,7 +22,6 @@
         print "%s: %s" % (h, response.getheader(h))
 print
 data = response.read()
-data = re.sub('\d+ years', 'many years', data)
 sys.stdout.write(data)
 
 if 200 <= response.status <= 299: