commit: ccd978c092504bc67e5333ab90a76a3f634aad4b
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 5 23:51:56 2020 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu Aug 6 05:57:49 2020 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ccd978c0
lib/portage/tests/runTests.py: fix multiple-imports
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
lib/portage/tests/runTests.py | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/lib/portage/tests/runTests.py b/lib/portage/tests/runTests.py
index d4d1f7c76..9514abebe 100755
--- a/lib/portage/tests/runTests.py
+++ b/lib/portage/tests/runTests.py
@@ -1,14 +1,15 @@
#!/usr/bin/python -bWd
# runTests.py -- Portage Unit Test Functionality
-# Copyright 2006-2014 Gentoo Foundation
+# Copyright 2006-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-import os, sys
-import os.path as osp
import grp
+import os
+import os.path as osp
import platform
import pwd
import signal
+import sys
def debug_signal(signum, frame):
import pdb