Switch to unified view

a/Allura/allura/lib/repository.py b/Allura/allura/lib/repository.py
...
...
165
    def __init__(self, app):
165
    def __init__(self, app):
166
        self.app = app
166
        self.app = app
167
167
168
    @LazyProperty
168
    @LazyProperty
169
    def repo(self):
169
    def repo(self):
170
        return app.repo
170
        return self.app.repo
171
171
172
    def _check_security(self):
172
    def _check_security(self):
173
        security.require_access(self.app, 'configure')
173
        security.require_access(self.app, 'configure')
174
174
175
    @with_trailing_slash
175
    @with_trailing_slash