diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-19 13:09:31 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-19 13:09:40 -0400 |
commit | 8443a92f9fb168b7b9bd38cd2bb4dea315f90eaf (patch) | |
tree | 375b6776971ea7b0803eb1190c3f9ecd6ded506d | |
parent | 90450f362629872dd2b6756ac0ff55ca8aecf30b (diff) | |
download | cryptography-8443a92f9fb168b7b9bd38cd2bb4dea315f90eaf.tar.gz cryptography-8443a92f9fb168b7b9bd38cd2bb4dea315f90eaf.tar.bz2 cryptography-8443a92f9fb168b7b9bd38cd2bb4dea315f90eaf.zip |
revert one import order change
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,9 +13,9 @@ from __future__ import absolute_import, division, print_function -from distutils.command.build import build import os import sys +from distutils.command.build import build from setuptools import find_packages, setup from setuptools.command.test import test |