Jon Vaughan
Jon Vaughan
As a workaround note that: - You can tell django-facebook explicitly what this table is called with this setting: FACEBOOK_OG_SHARE_DB_TABLE= 'django_facebook_open_graph_share' - _But_ you will still get this problem when,...
As tim says, 1.7 drops the get_profile method from the User class. If like me you are still using separate user and userprofile classes and switched from .get_profile to just...
``` def send_messages(self, email_messages): """ Sends one or more EmailMessage objects and returns the number of email messages sent. """ if not email_messages: return self._lock.acquire() try: new_conn_created = self.open() if...