Remove some unused imports.

(imported from commit bb8311848ca24fbb1fb1b3df8f8b4403eb38ce1c)
This commit is contained in:
Jessica McKellar
2013-03-11 11:19:42 -04:00
parent 2314809d73
commit a8d6bd3322
2 changed files with 2 additions and 3 deletions

View File

@@ -4,10 +4,9 @@ from zephyr.lib.context_managers import lockfile
from zephyr.models import Realm, Stream, UserProfile, UserActivity, \ from zephyr.models import Realm, Stream, UserProfile, UserActivity, \
Subscription, Recipient, Message, UserMessage, \ Subscription, Recipient, Message, UserMessage, \
DefaultStream, StreamColor, UserPresence, \ DefaultStream, StreamColor, UserPresence, \
MAX_MESSAGE_LENGTH, get_client, get_display_recipient, get_stream MAX_MESSAGE_LENGTH, get_client, get_stream
from django.db import transaction, IntegrityError from django.db import transaction, IntegrityError
from zephyr.lib.initial_password import initial_password from zephyr.lib.initial_password import initial_password
from zephyr.lib.cache import cache_with_key
from zephyr.lib.timestamp import timestamp_to_datetime, datetime_to_timestamp from zephyr.lib.timestamp import timestamp_to_datetime, datetime_to_timestamp
from zephyr.lib.message_cache import cache_save_message from zephyr.lib.message_cache import cache_save_message
from zephyr.lib.queue import SimpleQueueClient from zephyr.lib.queue import SimpleQueueClient

View File

@@ -14,7 +14,7 @@ from django.db.models import Q
from django.core.mail import send_mail from django.core.mail import send_mail
from zephyr.models import Message, UserProfile, Stream, Subscription, \ from zephyr.models import Message, UserProfile, Stream, Subscription, \
Recipient, get_huddle, Realm, UserMessage, \ Recipient, get_huddle, Realm, UserMessage, \
StreamColor, PreregistrationUser, get_client, MitUser, User, UserActivity, \ PreregistrationUser, get_client, MitUser, User, UserActivity, \
MAX_SUBJECT_LENGTH, MAX_MESSAGE_LENGTH, get_stream, UserPresence MAX_SUBJECT_LENGTH, MAX_MESSAGE_LENGTH, get_stream, UserPresence
from zephyr.lib.actions import do_add_subscription, do_remove_subscription, \ from zephyr.lib.actions import do_add_subscription, do_remove_subscription, \
do_change_password, create_mit_user_if_needed, do_change_full_name, \ do_change_password, create_mit_user_if_needed, do_change_full_name, \