brotherton-erpnext/patches/july_2013/p09_remove_website_pyc.py

9 lines
330 B
Python
Raw Normal View History

2013-07-23 12:24:16 +00:00
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)