Commit c868a643 authored by Jim Fulton's avatar Jim Fulton

Added missing check for already exported objects in exportFile.

parent 0a526e55
4-nxd+MVCC-load-before 3.10 3.10-nxd 4 4-nxd master 5.6.0 5.5.1 5.5.0 5.4.0 5.3.0 5.2.4 5.2.3 5.2.2 5.2.1 5.2.0 5.1.1 5.1.0 5.0.1 5.0.0 5.0.0b1 5.0.0a6 5.0.0a5 5.0.0a4 5.0.0a3 5.0.0a2 5.0.0a1 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.1 4.3.0 4.2.0 4.2.0b1 4.1.0 4.0.1 4.0.0 4.0.0b3 4.0.0b2 4.0.0b1 4.0.0a4 4.0.0a3 4.0.0a2 4.0.0a1 3.10.7 3.10.6 3.10.5 3.10.3 3.10.2 3.10.1 3.10.0 3.10.0b8 3.10.0b7 3.10.0b6 3.10.0b5 3.10.0b4 3.10.0b3 3.10.0b2 3.10.0b1 3.10.0a2 3.10.0a1 3.9.7 3.9.6 3.9.5 3.9.4 3.9.3 3.9.2 3.9.1 3.9.0 3.9.0c3 3.9.0c2 3.9.0c1 3.9.0b5 3.9.0b4 3.9.0b3 3.9.0b2 3.9.0b1 3.9.0a12 3.9.0a11 3.9.0a10 3.9.0a9 3.9.0a8 3.9.0a7 3.9.0a6 3.9.0a5 3.9.0a4 3.9.0a3 3.9.0a2 3.9.0a1 3.8.6 3.8.5 3.8.4 3.8.3 3.8.3b1 3.8.2 3.8.1 3.8.1b9 3.8.1b8 3.8.1b7 3.8.1b6 3.8.1b5 3.8.1b4 3.8.1b3 3.8.1b2 3.8.1b1 3.8.0 3.8.0c1 3.8.0b5 3.8.0b4 3.8.0b3 3.8.0b1 3.7.4 3.7.3 3.7.2 3.7.1 3.7.0 3.7.0b2 3.7.0b1 3.7-Zope-3.3.0rc1 3.6.5 3.6.4 3.6.3 3.6.2 3.6.1 3.6.0 3.6.0b6 3.6.0b5 3.6.0b4 3.6.0b3 3.6.0b2 3.6.0b1 3.6.0a4 3.6.0a3 3.6.0a2 3.6.0a1 3.5.1 3.5.1b2 3.5.1b1 3.5.0 3.5.0a8 3.5.0a7 3.5.0a6 3.5.0a5 3.5.0a4 3.5.0a3 3.5.0a2 3.5.0a1 3.4.6 3.4.5 3.4.4 3.4.3 3.4.2 3.4.2b3 3.4.2b2 3.4.2b1 3.4.1 3.4.1b5 3.4.1b4 3.4.1b3 3.4.1b2 3.4.1b1 3.4.1a6 3.4.1a5 3.4.1a4 3.4.1a3 3.4.1a2 3.4.1a1 3.4.0 3.4.0c2 3.4.0c1 3.4.0b3 3.4.0b2 3.4.0a9 3.4.0a8 3.4.0a7 3.4.0a6 3.4.0a5 3.4.0a4 3.4.0a3 3.4.0a2.1 3.4.0a2 3.4.0a1 3.3.1 3.3.1c1 3.3.1a1 3.3.0 3.3.0c1 3.3.0b2 3.3.0b1 3.3.0a2 new-doc cvs-to-svn-conversion blob-technical-preview before_transaction_remove
No related merge requests found
......@@ -108,6 +108,8 @@ class ExportImport:
while oids:
oid=oids[0]
del oids[0]
if done(oid): continue
done_oids[oid]=1
try: p, serial = load(oid, version)
except: pass # Ick, a broken reference
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment