aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces')
-rw-r--r--interfaces/web/web.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/interfaces/web/web.py b/interfaces/web/web.py
index 6b47aa6..2907932 100644
--- a/interfaces/web/web.py
+++ b/interfaces/web/web.py
@@ -9,7 +9,7 @@ from libbe import bugdir
from libbe.command.depend import get_blocked_by, get_blocks
from libbe.command.target import add_target, remove_target
from libbe.command.target import bug_from_target_summary, bug_target
-from libbe.command.util import bug_comment_from_user_id
+from libbe.command.util import bugdir_bug_comment_from_user_id
from libbe.storage.util import settings_object
import libbe.command.tag
@@ -136,7 +136,8 @@ class WebInterface:
self.bd.load_all_bugs()
- bug, comment = bug_comment_from_user_id(self.bd, id)
+ bugdir, bug, comment = bugdir_bug_comment_from_user_id(
+ {self.bd.uuid: self.bd}, id)
template = self.env.get_template('bug.html')
common_info = self.get_common_information()