commit e36e4a9671e2dc066fbc0f51c845a9941414b08f Author: teor teor@torproject.org Date: Mon Oct 22 12:31:32 2018 +1000
Sort the imports in test_rebind.py
Cleanup after #27968. --- src/test/test_rebind.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/test/test_rebind.py b/src/test/test_rebind.py index 5e671de30..c63341a68 100644 --- a/src/test/test_rebind.py +++ b/src/test/test_rebind.py @@ -1,12 +1,12 @@ from __future__ import print_function
-import sys -import subprocess -import socket +import errno import os -import time import random -import errno +import socket +import subprocess +import sys +import time
LOG_TIMEOUT = 60.0 LOG_WAIT = 0.1
tor-commits@lists.torproject.org