~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/base/text.py

  • Committer: Matt Giuca
  • Date: 2010-07-20 09:42:45 UTC
  • Revision ID: matt.giuca@gmail.com-20100720094245-0poipwrxm9tde8et
TextView: Removed constructor (it just called its superclass ctor).

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    template = 'template.txt'
36
36
    content_type = 'text/plain'
37
37
 
38
 
    def __init__(self, *args, **kwargs):
39
 
        super(TextView, self).__init__(*args, **kwargs)
40
 
 
41
38
    def get_context_ancestry(self, req):
42
39
        return req.publisher.get_ancestors(self.context)
43
40