Changeset - 5e1dadbc6f46
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 13 years ago 2012-11-05 17:59:58
marcin@python-works.com
Grafted from: e56b88f42927
fixed extras params from remote pull action
1 file changed with 5 insertions and 0 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/scm.py
Show inline comments
 
@@ -396,6 +396,7 @@ class ScmModel(BaseModel):
 
            raise Exception("This repository doesn't have a clone uri")
 

	
 
        repo = dbrepo.scm_instance
 
        from rhodecode import CONFIG
 
        try:
 
            extras = {
 
                'ip': '',
 
@@ -403,7 +404,11 @@ class ScmModel(BaseModel):
 
                'action': 'push_remote',
 
                'repository': dbrepo.repo_name,
 
                'scm': repo.alias,
 
                'config': CONFIG['__file__'],
 
                'make_lock': None,
 
                'locked_by': [None, None]
 
            }
 

	
 
            Repository.inject_ui(repo, extras=extras)
 

	
 
            if repo.alias == 'git':
0 comments (0 inline, 0 general)