# HG changeset patch # User Marcin Kuzminski # Date 2013-06-25 20:26:16 # Node ID 4fb3a7286e7b90d7840415a22a4940d98cea28c5 # Parent 4627bc2dc8be05c255d17fdbe4ba98a945e4aa52 do not overwrite python types diff --git a/rhodecode/controllers/changelog.py b/rhodecode/controllers/changelog.py --- a/rhodecode/controllers/changelog.py +++ b/rhodecode/controllers/changelog.py @@ -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)