~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/apps/transport.py

Merge my old pep8 branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
            name = self.name
55
55
            is_root = False
56
56
        branch_app = BranchWSGIApp(
57
 
            branch, name,
 
57
            branch,
 
58
            name,
58
59
            {'cachepath': self._config.SQL_DIR},
59
 
            self.root.graph_cache, is_root=is_root,
60
 
            use_cdn=self._config.get_option('use_cdn'))
 
60
            self.root.graph_cache,
 
61
            is_root=is_root,
 
62
            use_cdn=self._config.get_option('use_cdn'),
 
63
            )
61
64
        return branch_app.app
62
65
 
63
66
    def app_for_non_branch(self, environ):