##// END OF EJS Templates
do not overwrite python types
marcink -
r4036:4fb3a728 default
parent child Browse files
Show More
@@ -115,7 +115,7 b' class ChangelogController(BaseRepoContro'
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)
General Comments 0
You need to be logged in to leave comments. Login now