Move all MySQLdb imports after the 'import common' so that a MySQLdb
package installed in our own site-packages directory will be found
before the system installed one.
Adds an empty site-packages directory with an explanation README.
Signed-off-by: Gregory Smith <gps@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@2735 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/tko/query_history.cgi b/tko/query_history.cgi
index 8505293..a1e2f3a 100755
--- a/tko/query_history.cgi
+++ b/tko/query_history.cgi
@@ -1,6 +1,7 @@
#!/usr/bin/python
import sys, os
+import common
import MySQLdb
import urllib, db, unique_cookie
@@ -61,5 +62,3 @@
main()
-
-