I have a couple of python scripts running in the .openshift/cron/[hourly|minutely|etc] directories.
Problem is, .pyc files are being generated and cron is trying to run those as well.
Is this something that can be managed through openshift, limiting the extensions it attempts to run or would I be better off just adding the following to the top of each .py file?
import sys
sys.dont_write_bytecode = True