Merge branch 'main' into avm99963-monorail

Merged commit 34d8229ae2b51fb1a15bd208e6fe6185c94f6266

GitOrigin-RevId: 7ee0917f93a577e475f8e09526dd144d245593f4
diff --git a/project/projectsummary.py b/project/projectsummary.py
index c0cad5a..316e1d5 100644
--- a/project/projectsummary.py
+++ b/project/projectsummary.py
@@ -1,7 +1,6 @@
-# Copyright 2016 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style
-# license that can be found in the LICENSE file or at
-# https://developers.google.com/open-source/licenses/bsd
+# Copyright 2016 The Chromium Authors
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
 
 """A class to display the project summary page."""
 from __future__ import print_function
@@ -9,7 +8,6 @@
 from __future__ import absolute_import
 
 from businesslogic import work_env
-from framework import flaskservlet
 from framework import permissions
 from framework import servlet
 from project import project_helpers
@@ -20,7 +18,7 @@
   """Page to show brief project description and process documentation."""
 
   _PAGE_TEMPLATE = 'project/project-summary-page.ezt'
-  _MAIN_TAB_MODE = flaskservlet.FlaskServlet.MAIN_TAB_PROCESS
+  _MAIN_TAB_MODE = servlet.Servlet.MAIN_TAB_PROCESS
 
   def GatherPageData(self, mr):
     """Build up a dictionary of data values to use when rendering the page."""
@@ -70,5 +68,5 @@
 
     return help_data
 
-  # def GetProjectSummaryPage(self, **kwargs):
-  #   return self.handler(**kwargs)
\ No newline at end of file
+  def GetProjectSummaryPage(self, **kwargs):
+    return self.handler(**kwargs)