This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
collective.task/src/collective/task/setuphandlers.py

13 lines
264 B
Python

# -*- coding: utf-8 -*-
def isNotCurrentProfile(context):
return context.readDataFile("collectivetask_marker.txt") is None
def post_install(context):
"""Post install script"""
if isNotCurrentProfile(context): return
portal = context.getSite()