tests: sort import lines in tinyproxy.py
authorYuya Nishihara <yuya@tcha.org>
Sun, 03 Apr 2016 20:11:41 +0900
changeset 28773 0023a6e1328f
parent 28772 424c1632fffb
child 28774 21a507f9a6cd
tests: sort import lines in tinyproxy.py
tests/tinyproxy.py
--- a/tests/tinyproxy.py	Sun Apr 03 19:41:00 2016 +0900
+++ b/tests/tinyproxy.py	Sun Apr 03 20:11:41 2016 +0900
@@ -15,10 +15,10 @@
 __version__ = "0.2.1"
 
 import BaseHTTPServer
+import SocketServer
 import os
 import select
 import socket
-import SocketServer
 import urlparse
 
 class ProxyHandler (BaseHTTPServer.BaseHTTPRequestHandler):