Changeset - 4fb3a7286e7b
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 12 years ago 2013-06-25 20:26:16
marcin@python-works.com
do not overwrite python types
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/controllers/changelog.py
Show inline comments
 
@@ -115,7 +115,7 @@ class ChangelogController(BaseRepoContro
 

	
 
        dag = _dagwalker(repo, revs, repo.alias)
 
        dag = _colored(dag)
 
        for (id, type, ctx, vtx, edges) in dag:
 
        for (_id, _type, ctx, vtx, edges) in dag:
 
            data.append(['', vtx, edges])
 

	
 
        c.jsdata = json.dumps(data)
0 comments (0 inline, 0 general)