Comment #4 on issue 14 by chris.leemesser: No atomformat module
http://code.google.com/p/django-notification/issues/detail?id=14

Just to be explicit, to make things work I:
1. downloaded atompub to somewhere on my PYTHONPATH
{{{
svn co http://django-atompub.googlecode.com/svn/trunk/atompub/
}}}
2. placed this on my pythonpath

3. patched feeds.py
{{{
#!python
try:
     from atompub.atom import Feed
except ImportError, msg1:
     try:
         from atomformat import Feed
     except ImportError,msg2:
         print """Need to install atomformat or django-atompub
(http://code.google.com/p/django-atompub/) to support feeds"""
         print msg1
         raise
}}}


Attachments:
        002-atomformat.patch  445 bytes

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pinax-updates" 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/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to