Ignore:
Timestamp:
10/11/10 22:05:45 (3 years ago)
Author:
moschny
Message:

Fix WS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trac/plugins/redirect-0.11/redirect/redirect.py

    r3279 r3280  
    103103        out = StringIO() 
    104104        link, missing = RedirectFormatter(self.env, context).format(args) 
    105      
     105 
    106106        if link and not missing: 
    107107            out.write('<div class="system-message">') 
     
    128128            out.write('Redirection target not found: %s' % link) 
    129129            out.write('</div>') 
    130      
     130 
    131131        else: 
    132132            # No arguments given to the redirect macro 
     
    135135            out.write('No redirection target given') 
    136136            out.write('</div>') 
    137      
     137 
    138138        return out.getvalue() 
    139      
     139 
    140140    def get_macros(self): 
    141141        yield 'redirect' 
     
    177177    def post_process_request(req, template, data, content_type): 
    178178        return (template, data, content_type) 
    179           
Note: See TracChangeset for help on using the changeset viewer.