Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit ee27e65e authored by ulrich_y's avatar ulrich_y
Browse files

Bug fix to cc9b12d9: getplots failed if plots aren't sorted the same

parent 78dc8780
No related branches found
No related tags found
No related merge requests found
......@@ -9,9 +9,9 @@ loadargs = {}
def getplots(s):
if type(s) == dict:
return list(set(s.keys()) - {
return sorted(list(set(s.keys()) - {
'SHA','chi2a','iteration','msg','value','time'
})
}))
elif type(s) == list:
p = set(tuple(getplots(i)) for i in s)
if len(p) != 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment