beremiz
Clone
Summary
Browse
Changes
Graph
PurgeBlobs was faulty, but it was never having anything to purge. Fixed.
2019-07-12, Edouard Tisserant
26ba948a2e51
Parents
e10a1095f577
Children
535eb0b8bd9d
570cf07c3fd1
PurgeBlobs was faulty, but it was never having anything to purge. Fixed.
1 files changed, 1 insertions(+), 1 deletions(-)
+1
-1
runtime/PLCObject.py
--- a/runtime/PLCObject.py Fri Jul 12 11:51:47 2019 +0200
+++ b/runtime/PLCObject.py Fri Jul 12 11:53:04 2019 +0200
@@ -530,7 +530,7 @@
@RunInMain
def PurgeBlobs(self):
- for fobj, _path, _md5sum in self.blobs:
+ for fobj, _path, _md5sum in self.blobs.values():
os.close(fobj)
self._init_blobs()