aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkoobs <koobs@users.noreply.github.com>2014-02-24 22:26:23 +1100
committerUser Koobs <koobs@9-STABLE-amd64.elysium>2014-02-25 19:35:48 +1100
commit23690dd8f86665ccff87dcb9850fc68bcfc4c371 (patch)
treef0b934f9737be23d5d34ce332f64ea0d979ddafb
parent92a4cdbd926a95fc3cfe8428700469938bf3a73f (diff)
downloadcryptography-23690dd8f86665ccff87dcb9850fc68bcfc4c371.tar.gz
cryptography-23690dd8f86665ccff87dcb9850fc68bcfc4c371.tar.bz2
cryptography-23690dd8f86665ccff87dcb9850fc68bcfc4c371.zip
pep8: Add import (sys) and newline
-rw-r--r--setup.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 48343ca0..df29b042 100644
--- a/setup.py
+++ b/setup.py
@@ -11,6 +11,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import os
+import sys
from distutils.command.build import build
from setuptools import setup, find_packages
@@ -75,6 +76,7 @@ class PyTest(TestCommand):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
+
def run_tests(self):
# Import here because in module scope the eggs are not loaded.
import pytest