We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b820f59 commit fbe3014Copy full SHA for fbe3014
speedcenter/codespeed/views.py
@@ -268,7 +268,11 @@ def comparison(request):
268
settings.normalization:
269
# Uncheck exe used for normalization when normalization is chosen as default in the settings
270
selectedbaseline = exekeys[0]#this is the default baseline
271
- checkedexecutables.remove(selectedbaseline)
+ try:
272
+ checkedexecutables.remove(selectedbaseline)
273
+ except ValueError:
274
+ pass#the selected baseline was not checked
275
+
276
selecteddirection = False
277
if 'hor' in data and data['hor'] == "true" or\
278
hasattr(settings, 'chart_orientation') and settings.chart_orientation == 'horizontal':
0 commit comments