##// END OF EJS Templates
changelog: fix consistency of returned data to 2 element tuple.
marcink -
r2132:d9e584d8 default
parent child Browse files
Show More
@@ -83,7 +83,7 b' class RepoChangelogView(RepoAppView):'
83 83 :param commits: list of commits
84 84 """
85 85 if not commits:
86 return json.dumps([])
86 return json.dumps([]), json.dumps([])
87 87
88 88 def serialize(commit, parents=True):
89 89 data = dict(
General Comments 0
You need to be logged in to leave comments. Login now