summaryrefslogtreecommitdiff
path: root/maskaudit.py
diff options
context:
space:
mode:
Diffstat (limited to 'maskaudit.py')
-rwxr-xr-xmaskaudit.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/maskaudit.py b/maskaudit.py
index cfa07785..20bc5d0a 100755
--- a/maskaudit.py
+++ b/maskaudit.py
@@ -9,8 +9,9 @@
#
# With -t, tabulate usage of defines to find unused ones. Requires -c or -d.
-# This code runs under both Python 2 and Python 3. Preserve this property!
-from __future__ import print_function
+# This code runs compatibly under Python 2 and 3.x for x >= 2.
+# Preserve this property!
+from __future__ import absolute_import, print_function, division
import getopt
import glob