comparison rhodecode/controllers/changelog.py @ 4036:4fb3a7286e7b

do not overwrite python types
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 25 Jun 2013 20:26:16 +0200
parents 4627bc2dc8be
children 0e1023147334
comparison
equal deleted inserted replaced
4035:4627bc2dc8be 4036:4fb3a7286e7b
113 data = [] 113 data = []
114 revs = revs_int 114 revs = revs_int
115 115
116 dag = _dagwalker(repo, revs, repo.alias) 116 dag = _dagwalker(repo, revs, repo.alias)
117 dag = _colored(dag) 117 dag = _colored(dag)
118 for (id, type, ctx, vtx, edges) in dag: 118 for (_id, _type, ctx, vtx, edges) in dag:
119 data.append(['', vtx, edges]) 119 data.append(['', vtx, edges])
120 120
121 c.jsdata = json.dumps(data) 121 c.jsdata = json.dumps(data)
122 122
123 @LoginRequired() 123 @LoginRequired()