From ae3373188cc223c995f4cfbce68dba8206cd8113 Mon Sep 17 00:00:00 2001 From: david-sarah Date: Fri, 21 Jan 2011 17:50:50 -0800 Subject: [PATCH] misc/build_helpers/run-with-pythonpath.py: fix pyflakes unused import warning. --- misc/build_helpers/run-with-pythonpath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/build_helpers/run-with-pythonpath.py b/misc/build_helpers/run-with-pythonpath.py index 4421192a..fd2fbe6f 100644 --- a/misc/build_helpers/run-with-pythonpath.py +++ b/misc/build_helpers/run-with-pythonpath.py @@ -7,7 +7,7 @@ code, including dependent libraries. Run this like: python misc/build_helpers/run-with-pythonpath.py python foo.py """ -import os, sys, subprocess +import os, sys # figure out where support/lib/pythonX.X/site-packages is # add it to os.environ["PYTHONPATH"] -- 2.37.2