liuyang1520 / django-command-extensions

Automatically exported from code.google.com/p/django-command-extensions
MIT License
0 stars 0 forks source link

create_jobs is broken #47

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
current routine for finding the module namespace is broken and error prone

Original issue reported on code.google.com by v.oostv...@gmail.com on 5 Sep 2008 at 3:39

GoogleCodeExporter commented 8 years ago

Original comment by v.oostv...@gmail.com on 5 Sep 2008 at 3:39

GoogleCodeExporter commented 8 years ago
I believe I'm experiencing this problem as well:

$ python manage.py create_jobs core
Traceback (most recent call last):
  File "manage.py", line 11, in <module>
    execute_manager(settings)
  File "/Applications/Django/django-trunk/django/core/management/__init__.py", line
340, in execute_manager
    utility.execute()
  File "/Applications/Django/django-trunk/django/core/management/__init__.py", line
295, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/Applications/Django/django-trunk/django/core/management/base.py", line 77,
in run_from_argv
    self.execute(*args, **options.__dict__)
  File "/Applications/Django/django-trunk/django/core/management/base.py", line 96,
in execute
    output = self.handle(*args, **options)
  File "/Applications/Django/django-trunk/django/core/management/base.py", line 146,
in handle
    app_output = self.handle_app(app, **options)
  File
"/opt/local/lib/python2.5/site-packages/django_extensions/management/commands/cr
eate_jobs.py",
line 37, in handle_app
    paths = [p for p in paths if not app_dir.startswith(p)]
AttributeError: 'NoneType' object has no attribute 'startswith'

Original comment by odio....@gmail.com on 30 Sep 2008 at 6:43

GoogleCodeExporter commented 8 years ago
I think this part is over-engineered given that handle_app is already
application-intelligent. This patch uses a similar technique to getting the 
app_dir
as Django's template file loader, and makes the process a *lot* simpler. :)

Original comment by justinar...@gmail.com on 18 Feb 2009 at 8:13

Attachments:

GoogleCodeExporter commented 8 years ago
It is over-engineered :) Thanks for the patch.

Applied the patch to svn.
If there any problems please reopen this ticket.

Original comment by v.oostv...@gmail.com on 19 Feb 2009 at 5:46