diff --git a/maintenance/doctype/support_ticket/__init__.py b/maintenance/doctype/support_ticket/__init__.py index ba49f95af31..398ee7f5a48 100644 --- a/maintenance/doctype/support_ticket/__init__.py +++ b/maintenance/doctype/support_ticket/__init__.py @@ -20,7 +20,7 @@ class SupportMailbox(POP3Mailbox): """ Updates message from support email as either new or reply """ - from event_updates import update_feed + from home import update_feed content, content_type = '[Blank Email]', 'text/plain' if mail.text_content: @@ -60,4 +60,4 @@ def get_support_mails(): """ Gets new emails from support inbox and updates / creates Support Ticket records """ - SupportMailbox().get_messages() \ No newline at end of file + SupportMailbox().get_messages()