Changeset - e6a3f4b414d2
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 12 years ago 2013-06-04 00:29:46
marcin@python-works.com
fixed translation and unicode issues
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/db.py
Show inline comments
 
@@ -1269,13 +1269,13 @@ class RepoGroup(Base, BaseModel):
 
        from webhelpers.html import literal as _literal
 
        if not groups:
 
            groups = cls.query().all()
 

	
 
        repo_groups = []
 
        if show_empty_group:
 
            repo_groups = [('-1', '-- %s --' % _('top level'))]
 
            repo_groups = [('-1', u'-- %s --' % _('top level'))]
 
        sep = ' » '
 
        _name = lambda k: _literal(sep.join(k))
 

	
 
        repo_groups.extend([(x.group_id, _name(x.full_path_splitted))
 
                              for x in groups])
 

	
0 comments (0 inline, 0 general)