这是我的织物脚本的摘录
def create_php_site(name):
"""
Creates a new php installation
"""
from resource.php.git import gitignore
from resource.php.nginx import nginx
当我运行它时,我收到错误“ImportError:没有名为 php.git 的模块”
但是如果我将“from resource.php.git import gitignore”移到函数之外,它就可以工作。有任何想法吗?resource.php.git 的每一层都有__init__.py
在resource/php/中有git.py:
gitignore = """.DS_Store
._.DS_Store
"""