Hi list! I have a problem when I'm trying to import the model 'Tag' from django-tagging outside an application.
My file import-delicious.py is located in the project root directory where the apps are, too. The file looks like this: import os os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' from tagging.models import Tag ... The error message is: ======================================================== Traceback (most recent call last): File "C:\Kai\kaikuehne\import_delicious.py", line 7, in <module> from tagging.models import Tag File "C:\Kai\kaikuehne\..\kaikuehne\tagging\models.py", line 5, in <module> from django.contrib.contenttypes.models import ContentType File "C:\Kai\Python25\lib\site-packages\django\contrib\contenttypes\models.py", line 33, in <module> class ContentType(models.Model): File "C:\Kai\Python25\lib\site-packages\django\db\models\base.py", line 35, in __new__ new_class.add_to_class('_meta', Options(attrs.pop('Meta', None))) File "C:\Kai\Python25\lib\site-packages\django\db\models\base.py", line 174, in add_to_class value.contribute_to_class(cls, name) File "C:\Kai\Python25\lib\site-packages\django\db\models\options.py", line 54, in contribute_to_class setattr(self, 'verbose_name_plural', meta_attrs.pop('verbose_name_plural', self.verbose_name + 's')) File "C:\Kai\Python25\lib\site-packages\django\utils\functional.py", line 57, in __wrapper__ res = self.__func(*self.__args, **self.__kw) File "C:\Kai\Python25\lib\site-packages\django\utils\translation\__init__.py", line 52, in gettext return real_gettext(message) File "C:\Kai\Python25\lib\site-packages\django\utils\translation\__init__.py", line 41, in delayed_loader return g[caller](*args, **kwargs) File "C:\Kai\Python25\lib\site-packages\django\utils\translation\__init__.py", line 52, in gettext return real_gettext(message) File "C:\Kai\Python25\lib\site-packages\django\utils\translation\trans_real.py", line 254, in gettext _default = translation(settings.LANGUAGE_CODE) File "C:\Kai\Python25\lib\site-packages\django\utils\translation\trans_real.py", line 183, in translation default_translation = _fetch(settings.LANGUAGE_CODE) File "C:\Kai\Python25\lib\site-packages\django\utils\translation\trans_real.py", line 166, in _fetch app = getattr(__import__(appname[:p], {}, {}, [appname[p+1:]]), appname[p+1:]) ImportError: No module named kaikuehne ======================================================== What I'm trying to do is just to import my delicious booksmarks and use the Tag objects from django-tagging instead of creating an own model for the /links/-app. I thought it would be django's fault (e.g. django-tagging works with the svn-version only and I have overseen it). But the error occurs with the svn version of django, too. So probably I made something wrong here. Can you help me? Sorry if I left something out, I'll post it then. Thanks Kai --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---