2013-08-05 09:29:54 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2013-02-06 10:11:32 +00:00
|
|
|
def execute():
|
|
|
|
from webnotes.utils import get_base_path
|
|
|
|
import shutil
|
|
|
|
import os
|
|
|
|
|
2013-02-06 10:12:41 +00:00
|
|
|
utils_path = os.path.join(get_base_path(), "app", "accounts", "utils")
|
|
|
|
if os.path.exists(utils_path):
|
|
|
|
shutil.rmtree(utils_path)
|