aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/html.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/command/html.py')
-rw-r--r--libbe/command/html.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/command/html.py b/libbe/command/html.py
index 8d42747..1fdae08 100644
--- a/libbe/command/html.py
+++ b/libbe/command/html.py
@@ -782,9 +782,9 @@ div.root.comment {
{% if comments %}
{% for depth,comment in comments %}
{% if depth == 0 %}
-<div class="comment root" id="{{ comment_dir(comment) }}">
+<div class="comment root" id="C{{ comment_dir(comment) }}">
{% else %}
-<div class="comment" id="{{ comment_dir(comment) }}">
+<div class="comment" id="C{{ comment_dir(comment) }}">
{% endif %}
{{ comment_entry.render({
'depth':depth, 'bug': bug, 'comment':comment, 'comment_dir':comment_dir,