我使用 Django 应用程序,其中view.py文件调用changes_to_test2函数,该函数位于view.py文件中,该文件位于view.py的不同文件夹中。
代码是:
view.py文件:
def test1(request):
import commands
command = "config.py --action=changes_to_test2"
(status, output) = commands.getstatusoutput(command)
print 'Output %s' %output
打印显示:
Output sh: config.py: command not found
所以永远不要输入其他功能,有什么建议吗?