我有以下 django 管理命令:
织物测试.py
from django.core.management.base import NoArgsCommand
import locale
class Command(NoArgsCommand):
def handle_noargs(self, **options):
print locale.getdefaultlocale()
我可以在本地运行:
$ /home/user/env/bin/python manage.py fabrictest
('en_US', 'UTF-8')
但是,当我使用以下结构任务远程运行命令时
@task
def test():
# run manage.py using the python bin from the virtualenv
with cd(env.project_root):
run("/home/user/env/bin/python manage.py fabrictest")
我得到以下输出
[server] Executing task 'test'
[server] run: /home/user/env/bin/python manage.py fabrictest
[server] out: (None, None)
为什么我得到(None, None)
而不是('en_US', 'UTF-8')
?这会为其他一些管理脚本生成错误(即,syncdb
在创建超级用户时)。