Skip to content

Commit f999045

Browse files
committed
Fix import paths to include ietf.
- Legacy-Id: 3874
1 parent 1fc978e commit f999045

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

ietf/doc/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ def all(self):
725725

726726
@property
727727
def ipr(self):
728-
from ipr.models import IprDraftProxy
728+
from ietf.ipr.models import IprDraftProxy
729729
return IprDraftProxy.objects.filter(doc_alias__document=self.pk)
730730

731731
class Meta:

ietf/wgcharter/feeds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from ietf.group.models import Group
1111
from ietf.wgcharter.views import _get_history, _get_html
12-
from wgcharter import markup_txt
12+
from ietf.wgcharter import markup_txt
1313
import datetime
1414
import re, os
1515

ietf/wgcharter/views.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
from django.utils.decorators import decorator_from_middleware
1212
from django.middleware.gzip import GZipMiddleware
1313
from django.core.exceptions import ObjectDoesNotExist
14+
from django.conf import settings
1415
from ietf.doc.models import GroupBallotPositionDocEvent, WriteupDocEvent
1516
from ietf.group.models import Group, GroupHistory
1617
from ietf.person.models import Person
17-
from wgcharter import markup_txt
18-
from django.conf import settings
18+
from ietf.wgcharter import markup_txt
1919

20-
from wgcharter.utils import *
20+
from ietf.wgcharter.utils import *
2121
from ietf.utils.history import find_history_active_at
2222
from ietf.idtracker.templatetags.ietf_filters import format_textarea, fill
2323

0 commit comments

Comments
 (0)