summaryrefslogtreecommitdiff
path: root/cherrypy/test/modpy.py
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2016-09-08 13:28:36 +0300
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2016-09-08 13:28:36 +0300
commitc3399dfb92f3d14916a7f67a976168aa89c403e8 (patch)
tree13df5b92d1dd01f7f178e03b6ebfec523da16538 /cherrypy/test/modpy.py
parent1be04e9274e6255d848ac3e96703c122fb045751 (diff)
downloadcherrypy-git-c3399dfb92f3d14916a7f67a976168aa89c403e8.tar.gz
Fix E402 in test/modpy
Diffstat (limited to 'cherrypy/test/modpy.py')
-rw-r--r--cherrypy/test/modpy.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cherrypy/test/modpy.py b/cherrypy/test/modpy.py
index 45d19062..c4772683 100644
--- a/cherrypy/test/modpy.py
+++ b/cherrypy/test/modpy.py
@@ -35,11 +35,12 @@ KNOWN BUGS
"""
import os
-curdir = os.path.join(os.getcwd(), os.path.dirname(__file__))
import re
from cherrypy.test import helper
+curdir = os.path.join(os.getcwd(), os.path.dirname(__file__))
+
def read_process(cmd, args=""):
pipein, pipeout = os.popen4("%s %s" % (cmd, args))