From 93e226ee9affa37c19b7cc7da52e1b3bdcb64003 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 29 Aug 2012 11:56:17 -0400 Subject: [PATCH] bug: fix invalid root element comment -> bug in Bug.from_xml(). --- libbe/bug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbe/bug.py b/libbe/bug.py index c91dfb8..07f09e4 100644 --- a/libbe/bug.py +++ b/libbe/bug.py @@ -476,7 +476,7 @@ class Bug (settings_object.SavedSettingsObject): bug = ElementTree.XML(xml_string) if bug.tag != 'bug': raise utility.InvalidXML( \ - 'bug', bug, 'root element must be ') + 'bug', bug, 'root element must be ') tags=['uuid','short-name','severity','status','assigned', 'reporter', 'creator','created','summary','extra-string'] self.explicit_attrs = [] -- 2.26.2