Skip to content

Commit

Permalink
Really tag 0.7.0
Browse files Browse the repository at this point in the history
Catch an exception when normalization=true and comp_executables is set
  • Loading branch information
tobami committed Jan 20, 2011
1 parent b820f59 commit fbe3014
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion speedcenter/codespeed/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,11 @@ def comparison(request):
settings.normalization:
# Uncheck exe used for normalization when normalization is chosen as default in the settings
selectedbaseline = exekeys[0]#this is the default baseline
checkedexecutables.remove(selectedbaseline)
try:
checkedexecutables.remove(selectedbaseline)
except ValueError:
pass#the selected baseline was not checked

selecteddirection = False
if 'hor' in data and data['hor'] == "true" or\
hasattr(settings, 'chart_orientation') and settings.chart_orientation == 'horizontal':
Expand Down

0 comments on commit fbe3014

Please sign in to comment.