Skip to content

Commit d2b244d

Browse files
committed
merge default trunk changes
2 parents 4b16dab + 01f34fd commit d2b244d

File tree

3 files changed

+2
-106
lines changed

3 files changed

+2
-106
lines changed

issues/extensions/templating.py

Lines changed: 0 additions & 104 deletions
This file was deleted.

website/issues/extensions/templating.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def get_status_of_module(module, prefix=None, version=True):
111111

112112
info.append("<h2>Environment Variables</h2>")
113113
info.append("<pre>") # include pre to prevent wrapping of values
114-
for key in db._client.env.keys():
114+
for key in list(db._client.env.keys()):
115115
info.append("%s=%s"%(key,db._client.env[key]) + "<br>")
116116
info.append("</pre>")
117117
return "\n".join(info)

website/issues/html/issue.item.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
</tr>
167167
<tr tal:condition="context/is_edit_ok">
168168
<td colspan=4>
169-
<textarea readonly id="DropZone">
169+
<textarea readonly id="DropZone" aria-labeledby="DropZone">
170170
paste images or drag and drop files here....
171171
</textarea>
172172
</td>

0 commit comments

Comments
 (0)