Skip to content

Commit 8860445

Browse files
committed
Fix string comparison
1 parent 2bf22df commit 8860445

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codespeed/views_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def getcomparisonexes():
119119
maxlen = 20
120120
# add all tagged revs for any project
121121
for exe in baselines:
122-
if exe['key'] is not "none" and exe['executable'].project == proj:
122+
if exe['key'] != "none" and exe['executable'].project == proj:
123123
executablekeys.append(exe['key'])
124124
executables.append(exe)
125125

0 commit comments

Comments
 (0)