Remove lms/lib from sys.path in favore of using it as the module lms.lib

This commit is contained in:
Calen Pennington
2013-10-31 11:31:38 -04:00
parent bd5abc89ce
commit da26ae2529
24 changed files with 34 additions and 25 deletions

View File

@@ -4,7 +4,7 @@
from django.core.management.base import BaseCommand
from django.contrib.auth.models import User
import comment_client as cc
import lms.lib.comment_client as cc
class Command(BaseCommand):

View File

@@ -27,7 +27,7 @@ import django.dispatch
from django.forms import ModelForm, forms
from course_modes.models import CourseMode
import comment_client as cc
import lms.lib.comment_client as cc
from pytz import UTC
import crum

View File

@@ -82,7 +82,7 @@ def get_logger_config(log_dir,
},
'newrelic': {
'level': 'ERROR',
'class': 'newrelic_logging.NewRelicHandler',
'class': 'lms.lib.newrelic_logging.NewRelicHandler',
'formatter': 'raw',
}
},