summaryrefslogtreecommitdiff
path: root/cherrypy
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2016-09-08 13:29:44 +0300
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2016-09-08 13:29:44 +0300
commit838736bd0c066bd53b0a5c5046d1a7ee9e54763b (patch)
tree9fc554630e4ad4e335ac80f6f8519468c9de79dd /cherrypy
parentc3399dfb92f3d14916a7f67a976168aa89c403e8 (diff)
downloadcherrypy-git-838736bd0c066bd53b0a5c5046d1a7ee9e54763b.tar.gz
Fix E402 in test/modwsgi
Diffstat (limited to 'cherrypy')
-rw-r--r--cherrypy/test/modwsgi.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cherrypy/test/modwsgi.py b/cherrypy/test/modwsgi.py
index 043fb6e8..29816c60 100644
--- a/cherrypy/test/modwsgi.py
+++ b/cherrypy/test/modwsgi.py
@@ -33,7 +33,6 @@ KNOWN BUGS
"""
import os
-curdir = os.path.abspath(os.path.dirname(__file__))
import re
import sys
import time
@@ -41,6 +40,8 @@ import time
import cherrypy
from cherrypy.test import helper, webtest
+curdir = os.path.abspath(os.path.dirname(__file__))
+
def read_process(cmd, args=""):
pipein, pipeout = os.popen4("%s %s" % (cmd, args))