Howdy,

Just started a new project with Django trunk (have been using Django 1.1
lately, so please bare with me).

After I got a basic setup going I installed the latest release of south, but
that bombed spectacularly with database errors in settings.py. Oh, right -
that multi-database switch! I see the south tracker had a multi-database
commit at some point, so being the lazy programmer that I am, I just grabbed
south trunk. And my error messages were 'upgraded' on the gibberish scale.

1. Does current south-trunk play nice with django-trunk? If not, maybe this
is a fool's errand?

2. I'm hoping it's just User Error on my part. Here's the error I can't
grok:

$ ./django/bin syncdb
$ ./django/bin convert_to_south locations (or any other app)

Traceback (most recent call last):
  File "./bin/django", line 22, in <module>
    djangorecipe.manage.main('kit.settings_dev')
  File
"/home/norbert/.buildout/eggs/djangorecipe-0.19.2-py2.6.egg/djangorecipe/manage.py",
line 16, in main
    management.execute_manager(mod)
  File
"/home/norbert/code/new1000it/parts/django/django/core/management/__init__.py",
line 438, in execute_manager
    utility.execute()
  File
"/home/norbert/code/new1000it/parts/django/django/core/management/__init__.py",
line 379, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File
"/home/norbert/code/new1000it/parts/django/django/core/management/base.py",
line 195, in run_from_argv
    self.execute(*args, **options.__dict__)
  File
"/home/norbert/code/new1000it/parts/django/django/core/management/base.py",
line 222, in execute
    output = self.handle(*args, **options)
  File
"/home/norbert/code/new1000it/kit/compat/south/management/commands/convert_to_south.py",
line 47, in handle
    if Migrations(app):
  File "/home/norbert/code/new1000it/kit/compat/south/migration/base.py",
line 60, in __call__
    self.instances[app_label] = super(MigrationsMetaclass,
self).__call__(app_label_to_app_module(app_label), **kwds)
  File "/home/norbert/code/new1000it/kit/compat/south/migration/base.py",
line 84, in __init__
    self.set_application(application, force_creation, verbose_creation)
  File "/home/norbert/code/new1000it/kit/compat/south/migration/base.py",
line 155, in set_application
    raise exceptions.NoMigrations(application)
south.exceptions.NoMigrations: Application '<module 'locations' from
'/home/norbert/code/new1000it/kit/apps/locations/__init__.pyc'>' has no
migrations.


3. Maybe south has a new procedure for converting apps?

I'd really appreciate any guidance or divine intervention.

Thanks,
Norbert

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to