Hi, current reverse() should not be called during import time. AFAIK since this results into recursive imports:
http://code.djangoproject.com/ticket/5925 The ticket contains a way around this problem: {{{ # file lazy.py from django.core import urlresolvers class lazy_string(object): def __init__(self, function, *args, **kwargs): self.function=function self.args=args self.kwargs=kwargs def __str__(self): if not hasattr(self, 'str'): self.str=self.function(*self.args, **self.kwargs) return self.str def reverse(*args, **kwargs): return lazy_string(urlresolvers.reverse, *args, **kwargs) }}} from lazy import reverse instead of from django.core.urlresovlers import reverse HTH, Thomas -- Thomas Guettler, http://www.thomas-guettler.de/ E-Mail: guettli (*) thomas-guettler + de --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

