Skip to content
Snippets Groups Projects
Commit 1c1bdba8 authored by Herwin van Welbergen's avatar Herwin van Welbergen
Browse files

bugfix

parent 25c2d47e
No related branches found
No related tags found
No related merge requests found
......@@ -1038,7 +1038,9 @@ class OutputBuffer(Buffer):
#if iu._uid is not None:
# raise IUPublishedError(iu)
#iu.uid = self._generate_iu_uid()
self._iu_store[iu._uid] = iu
if iu.uid in self._iu_store:
raise IUPublishedError(iu)
self._iu_store[iu.uid] = iu
iu.buffer = self
self._publish_iu(iu)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment