From: BenoƮt Pin Date: Wed, 23 Feb 2011 15:41:07 +0000 (+0100) Subject: Bugfix. X-Git-Url: https://scm.cri.mines-paristech.fr/git/Plinn.git/commitdiff_plain/4fba0cb09c1619455d7ce419d353a953e8a231e2?ds=inline Bugfix. --- diff --git a/File.py b/File.py index 99c403a..1db2a97 100755 --- a/File.py +++ b/File.py @@ -54,10 +54,10 @@ class File(BaseFile) : if cacheTuple : cacheData = cacheTuple[1] - subObDict = cacheData.getSubObjects() - if subObDict.has_key(name) : - fileOb = OFS.Image.File(name, name, subObDict[name]) - return fileOb + subObDict = cacheData.getSubObjects() + if subObDict.has_key(name) : + fileOb = OFS.Image.File(name, name, subObDict[name]) + return fileOb raise AttributeError, name