Moved __future__ imports down so as not to obscure the module docstring. Fixes inability to run '$ ietf/utils/draft.py -h'.

- Legacy-Id: 15894
This commit is contained in:
Henrik Levkowetz 2019-01-14 22:28:52 +00:00
parent 910d3d7723
commit 98a74bd7f3

View file

@ -1,7 +1,5 @@
#!/usr/bin/python
# -*- python -*-
from __future__ import unicode_literals
from __future__ import print_function
"""
NAME
%(program)s - Extract meta-information from an IETF draft.
@ -32,6 +30,9 @@ COPYRIGHT
"""
from __future__ import unicode_literals
from __future__ import print_function
import datetime
import getopt
import os