Changeset - cd207411cf22
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 13 years ago 2012-07-16 14:42:21
marcin@python-works.com
fixed python2.5 compat and repo mapper issue
2 files changed with 5 insertions and 4 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/utils.py
Show inline comments
 
@@ -450,8 +450,8 @@ def repo2db_mapper(initial_repo_list, re
 

	
 
    for name, repo in initial_repo_list.items():
 
        group = map_groups(name)
 
        repo = rm.get_by_repo_name(name)
 
        if not repo:
 
        db_repo = rm.get_by_repo_name(name)
 
        if not db_repo:
 
            log.info('repository %s not found creating now' % name)
 
            added.append(name)
 
            desc = (repo.description
 
@@ -466,8 +466,8 @@ def repo2db_mapper(initial_repo_list, re
 
                just_db=True
 
            )
 
        elif install_git_hook:
 
            if repo.repo_type == 'git':
 
                ScmModel().install_git_hook(repo.scm_instance)
 
            if db_repo.repo_type == 'git':
 
                ScmModel().install_git_hook(db_repo.scm_instance)
 
    sa.commit()
 
    removed = []
 
    if remove_obsolete:
rhodecode/model/scm.py
Show inline comments
 
@@ -22,6 +22,7 @@
 
#
 
# You should have received a copy of the GNU General Public License
 
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
from __future__ import with_statement
 
import os
 
import re
 
import time
0 comments (0 inline, 0 general)