Posts

Showing posts with the label django-south

Sync Fabric with South

Image
Clash Royale CLAN TAG #URR8PPP Sync Fabric with South When i try execute a schemamigration with south with the following code: 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') When execute the fabric says the following error: Migration names should contain only alphanumeric characters and underscores. When use the sentences with cd , the command local not recognize the url in the sentences with cd and says the following error: with cd with cd can't open file 'manage.py': [Errno 2] No such file or directory Have you tried using with cd instead of && ? (docs) – alecxe Apr 25 '13 at 17:54 with ...