From 98a74bd7f3f081bc0de33571112eccc42eac1521 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 14 Jan 2019 22:28:52 +0000 Subject: [PATCH] Moved __future__ imports down so as not to obscure the module docstring. Fixes inability to run '$ ietf/utils/draft.py -h'. - Legacy-Id: 15894 --- ietf/utils/draft.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ietf/utils/draft.py b/ietf/utils/draft.py index 47fa1c3ed..78da1d12d 100755 --- a/ietf/utils/draft.py +++ b/ietf/utils/draft.py @@ -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