web/test/unittest_views_apacherewrite.py
branchstable
changeset 2172 cf8f9180e63e
parent 2000 bcb9a55a89e0
child 4212 ab6573088b4a
--- a/web/test/unittest_views_apacherewrite.py	Fri Jun 19 09:19:27 2009 +0200
+++ b/web/test/unittest_views_apacherewrite.py	Fri Jun 19 20:38:32 2009 +0200
@@ -12,14 +12,14 @@
 class ApacheURLRewriteTC(TestCase):
 
     def test(self):
-        class MyAppRules(ApacheURLRewrite): 
+        class MyAppRules(ApacheURLRewrite):
             rules = [
                 RewriteCond('logilab\.fr', match='host',
                             rules=[('/(.*)', r'http://www.logilab.fr/\1')],
                             action='redirect'),
                 RewriteCond('(www)\.logilab\.fr', match='host', action='stop'),
                 RewriteCond('/(data|json)/', match='path', action='stop'),
-                RewriteCond('(?P<cat>.*)\.logilab\.fr', match='host', 
+                RewriteCond('(?P<cat>.*)\.logilab\.fr', match='host',
                             rules=[('/(.*)', r'/m_%(cat)s/\1')]),
                 ]
         urlrewriter = MyAppRules()