与南方同步Fabric

时间:2013-04-25 17:26:58

标签: python django migration fabric django-south

当我尝试使用以下代码执行带有南方的schemamigration时:

# coding=utf-8
from fabric.api import env, hosts, local, run, cd

def updatebd():
    local('cd /Users/gian88/Sites/www/py/WEB/web/web/ && python manage.py schemamigration principal –-auto')

执行结构时会出现以下错误:

  

迁移名称应仅包含字母数字字符和   下划线。

当使用句子with cd时,本地命令无法识别句子with cd中的网址并显示以下错误:

can't open file 'manage.py': [Errno 2] No such file or directory

1 个答案:

答案 0 :(得分:0)

问题的解决方案是使用命令lcd,句子是这样的:

def updatebd():
    with lcd('/Users/gian88/Sites/www/py/WEB/web/web/'):
        local('python manage.py schemamigration principal --auto')