Switch from "import settings" to "from django.conf import settings"

This commit is contained in:
2010-12-20 11:46:47 +00:00
parent 21d9587645
commit 0aef422d9a
5 changed files with 7 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
from celery.decorators import task
from reddit.models import RedditAccount
from reddit.api import Inbox
import settings
from django.conf import settings
@task(ignore_result=True)
def send_reddit_message(to, subject, message):