Bugfix while installing POD fields.
This commit is contained in:
parent
a326f00c2f
commit
36c4ce5f77
|
@ -1,3 +1,6 @@
|
||||||
|
0.5.3 (2010-02-15)
|
||||||
|
- Improved gen/pod integration by adding a Pod field for appy.gen applications.
|
||||||
|
|
||||||
0.5.2 (2010-02-05)
|
0.5.2 (2010-02-05)
|
||||||
- Performance improvements in the XML marshaller
|
- Performance improvements in the XML marshaller
|
||||||
- Added a class "appy.gen.No" allowing to explain to the end-user why he can't trigger some workflow condition.
|
- Added a class "appy.gen.No" allowing to explain to the end-user why he can't trigger some workflow condition.
|
||||||
|
|
|
@ -246,7 +246,7 @@ class PloneInstaller:
|
||||||
for flavour in self.appyTool.flavours:
|
for flavour in self.appyTool.flavours:
|
||||||
attrName = flavour.getAttributeName(
|
attrName = flavour.getAttributeName(
|
||||||
'podTemplate', appyClass, attrName)
|
'podTemplate', appyClass, attrName)
|
||||||
fileObject = getattr(flavour.o, attrName)
|
fileObject = getattr(flavour, attrName)
|
||||||
if not fileObject or (fileObject.size == 0):
|
if not fileObject or (fileObject.size == 0):
|
||||||
# There is no file. Put the one specified in the
|
# There is no file. Put the one specified in the
|
||||||
# appyType.
|
# appyType.
|
||||||
|
|
Loading…
Reference in a new issue