Changeset - 6af1e0d5ff9d
[Not reviewed]
beta
0 1 0
hppj - 13 years ago 2012-06-15 07:41:06
hppj@postmage.biz
Fix repo_root for grouped repos
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/middleware/simplegit.py
Show inline comments
 
@@ -219,13 +219,13 @@ class SimpleGit(BaseVCSController):
 
        :param repo_name: name of the repository
 
        :param repo_path: full path to the repository
 
        """
 

	
 
        from rhodecode.lib.middleware.pygrack import make_wsgi_app
 
        app = make_wsgi_app(
 
            repo_root=os.path.dirname(repo_path),
 
            repo_root=safe_str(self.basepath),
 
            repo_name=repo_name,
 
            username=username,
 
        )
 
        return app
 

	
 
    def __get_repository(self, environ):
0 comments (0 inline, 0 general)