diff options
author | Chris Ball <cjb@laptop.org> | 2009-06-25 13:44:27 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2009-06-25 13:44:27 -0400 |
commit | 34b2884112e3c3ca0cc0ac83df68c66f6b2729c4 (patch) | |
tree | 7a1f3589de72cf53cf33d815ac49ddd1fb2f5fd5 /libbe/bug.py | |
parent | ae52bd5946df9c0d59be43824b20d33819891f93 (diff) | |
parent | 93402b914313e102aa56d5d59a2fead428ae8463 (diff) | |
download | bugseverywhere-34b2884112e3c3ca0cc0ac83df68c66f6b2729c4.tar.gz |
Merge be --version code from W. Trevor King.
Diffstat (limited to 'libbe/bug.py')
-rw-r--r-- | libbe/bug.py | 3 |
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) |