brotherton-erpnext/patches/july_2013/p09_remove_website_pyc.py
2013-07-23 17:54:16 +05:30

9 lines
330 B
Python

import webnotes
import os
def execute():
from webnotes.utils import get_base_path
website_py = os.path.join(get_base_path(), "app", "startup", "website.py")
website_pyc = os.path.join(get_base_path(), "app", "startup", "website.pyc")
if not os.path.exists(website_py) and os.path.exists(website_pyc):
os.remove(website_pyc)