diff options
author | W. Trevor King <wking@drexel.edu> | 2009-06-22 10:02:11 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-06-22 10:02:11 -0400 |
commit | 22aad60c0372e7a573ee2f9b908c11c96c48468f (patch) | |
tree | 11019cc27dd18a2d70c6463e6094711de87369dc /libbe/bug.py | |
parent | 447c4f625d22a27134d333cd6ccc211acb5d3922 (diff) | |
download | bugseverywhere-22aad60c0372e7a573ee2f9b908c11c96c48468f.tar.gz |
Fixed libbe.settings_object.EMPTY output in bug/comment XML.
The xml() method hadn't been updated since the settings_object revamp.
Diffstat (limited to 'libbe/bug.py')
-rw-r--r-- | libbe/bug.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/bug.py b/libbe/bug.py index fe059fa..59b011b 100644 --- a/libbe/bug.py +++ b/libbe/bug.py @@ -260,7 +260,7 @@ class Bug(settings_object.SavedSettingsObject): ("summary", self.summary)] ret = '<bug>\n' for (k,v) in info: - if v is not None: + if v is not settings_object.EMPTY: ret += ' <%s>%s</%s>\n' % (k,v,k) if show_comments == True: |