aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/bug.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/bug.py')
-rw-r--r--libbe/bug.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/libbe/bug.py b/libbe/bug.py
index 7418933..28f5253 100644
--- a/libbe/bug.py
+++ b/libbe/bug.py
@@ -283,7 +283,8 @@ class Bug(settings_object.SavedSettingsObject):
for (k,v) in info:
if v is not settings_object.EMPTY:
ret += ' <%s>%s</%s>\n' % (k,xml.sax.saxutils.escape(v),k)
-
+ for estr in self.extra_strings:
+ ret += ' <extra-string>%s</extra-string>\n' % estr
if show_comments == True:
comout = self.comment_root.xml_thread(auto_name_map=True,
bug_shortname=shortname)