diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-08 17:23:11 -0430 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-08 17:23:11 -0430 |
commit | 838e1ac804e24329a33dafc760abfb566be39bf3 (patch) | |
tree | 59fc288cfbd9bbcee080146d806508b2da9faf94 /tests/test_fernet.py | |
parent | 52a6fc44c454561ea2a9808f39f67913f6aca015 (diff) | |
parent | 27ddaba755c404377ba3222105165c4af0cd51c4 (diff) | |
download | cryptography-838e1ac804e24329a33dafc760abfb566be39bf3.tar.gz cryptography-838e1ac804e24329a33dafc760abfb566be39bf3.tar.bz2 cryptography-838e1ac804e24329a33dafc760abfb566be39bf3.zip |
Merge pull request #761 from alex/missing-future-license
Added future imports and licenses that are missing
Diffstat (limited to 'tests/test_fernet.py')
-rw-r--r-- | tests/test_fernet.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_fernet.py b/tests/test_fernet.py index bd4d90a5..36e87297 100644 --- a/tests/test_fernet.py +++ b/tests/test_fernet.py @@ -11,6 +11,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import absolute_import, division, print_function + import base64 import calendar import json |