Skip to content

Commit 159a02f

Browse files
authored
Merge pull request #96 from Manishearth/fix-crash
Use `not`, not \!
2 parents ffad7aa + b54fabd commit 159a02f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homu/html/queue.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ <h1>Homu queue - {% if repo_url %}<a href="{{repo_url}}" target="_blank">{{repo_
174174
{% for state in states %}
175175
<tr class="{{state.greyed}}">
176176
<td class="hide">{{loop.index}}</td>
177-
<td><input type="checkbox" data-num="{{state.num}}" {{ '' if ((state.status == 'approved' or (state.status == 'pending' and !state.try_)) and state.rollup != 'never') else 'disabled' }}></td>
177+
<td><input type="checkbox" data-num="{{state.num}}" {{ '' if ((state.status == 'approved' or (state.status == 'pending' and not state.try_)) and state.rollup != 'never') else 'disabled' }}></td>
178178
{% if multiple %}
179179
<td><a href="{{state.repo_url}}">{{state.repo_label}}</a></td>
180180
{% endif %}

0 commit comments

Comments
 (0)