Skip to content

Commit 7ac4113

Browse files
committed
Import math as needed. Related to [5626] and issue ietf-tools#974.
- Legacy-Id: 5628 Note: SVN reference [5626] has been migrated to Git commit fb1df9e
1 parent f3833e1 commit 7ac4113

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

ietf/doc/proxy.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1+
import glob
2+
import os
3+
import math
4+
15
from ietf.doc.models import *
26
from ietf.person.models import Email
37
from ietf.utils.proxy import TranslatingManager
48
from ietf.name.proxy import *
59

610
from django.conf import settings
711

8-
import glob, os
9-
10-
1112
class InternetDraft(Document):
1213
objects = TranslatingManager(dict(filename="name",
1314
filename__contains="name__contains",

ietf/doc/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import os
2+
import math
3+
24
from django.conf import settings
35

46
# Should this move from idrfc to doc?

0 commit comments

Comments
 (0)