aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/bug.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/bug.py')
-rw-r--r--libbe/bug.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/libbe/bug.py b/libbe/bug.py
index fd30ff7..6633ab7 100644
--- a/libbe/bug.py
+++ b/libbe/bug.py
@@ -267,7 +267,9 @@ class Bug(settings_object.SavedSettingsObject):
value = getattr(self, setting)
if value == None:
return ""
- return str(value)
+ if type(value) not in types.StringTypes:
+ return str(value)
+ return value
def xml(self, show_comments=False):
if self.bugdir == None: