aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/examples/decryption-filter.py
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python/examples/decryption-filter.py')
-rw-r--r--lang/python/examples/decryption-filter.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/python/examples/decryption-filter.py b/lang/python/examples/decryption-filter.py
index dbd66fc3..3007c2b0 100644
--- a/lang/python/examples/decryption-filter.py
+++ b/lang/python/examples/decryption-filter.py
@@ -24,6 +24,9 @@ be used like this:
"""
+from __future__ import absolute_import, print_function, unicode_literals
+del absolute_import, print_function, unicode_literals
+
import sys
import pyme
pyme.Context().decrypt(sys.stdin, sink=sys.stdout)