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:
parent
afbd8750aa
commit
f581818afa
@ -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>
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user