This is an automated email from the ASF dual-hosted git repository.

gcruz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git


The following commit(s) were added to refs/heads/master by this push:
     new 0c5013d  #8412 removed return keyword
0c5013d is described below

commit 0c5013d6eaf263517ffed5b864c42eae45c55f64
Author: Guillermo Cruz <[email protected]>
AuthorDate: Thu Feb 17 14:38:57 2022 -0700

    #8412 removed return keyword
---
 Allura/allura/controllers/project.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Allura/allura/controllers/project.py 
b/Allura/allura/controllers/project.py
index 3c1983a..d8593af 100644
--- a/Allura/allura/controllers/project.py
+++ b/Allura/allura/controllers/project.py
@@ -403,7 +403,7 @@ class ProjectController(FeedController):
         activity_enabled = asbool(config.get('activitystream.enabled', False))
         if mount is not None:
             if hasattr(app, 'default_redirect'):
-                return app.default_redirect()
+                app.default_redirect()
             if 'ac' in mount:
                 redirect(mount['ac'].options.mount_point + '/')
             elif 'sub' in mount:

Reply via email to