2004-08-22 Tim Waugh <twaugh@redhat.com>

* src/WriteXML.py (write_xml_data): Fixed typo causing XML export to
        omit all place definitions.


svn: r3469
This commit is contained in:
Tim Waugh 2004-08-22 12:06:19 +00:00
parent 5f413de986
commit fbeab25019
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,6 @@
2004-08-22 Tim Waugh <twaugh@redhat.com>
* src/WriteXML.py (write_xml_data): Fixed typo causing XML export to
omit all place definitions.
* src/RelLib.py (probably_alive): Fixed typo (bug #1012347).
2004-08-21 Alex Roitman <shura@alex.neuro.umn.edu>

View File

@ -374,7 +374,7 @@ class XmlWriter:
keys.sort ()
for key in keys:
try:
place = self.db.get_place_handle(key)
place = self.db.get_place_from_handle(key)
if self.callback and count % delta == 0:
self.callback(float(count)/float(total))
self.write_place_obj(place)