Skip to content

Commit 98a74bd

Browse files
committed
Moved __future__ imports down so as not to obscure the module docstring. Fixes inability to run '$ ietf/utils/draft.py -h'.
- Legacy-Id: 15894
1 parent 910d3d7 commit 98a74bd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ietf/utils/draft.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/python
22
# -*- python -*-
3-
from __future__ import unicode_literals
4-
from __future__ import print_function
53
"""
64
NAME
75
%(program)s - Extract meta-information from an IETF draft.
@@ -32,6 +30,9 @@
3230
3331
"""
3432

33+
from __future__ import unicode_literals
34+
from __future__ import print_function
35+
3536
import datetime
3637
import getopt
3738
import os

0 commit comments

Comments
 (0)