diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-27 09:19:08 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-27 09:19:08 (GMT) |
commit | 36b3fbb0ee6e266381cec91a0a3c15fd403c3cfd (patch) | |
tree | c86f47382a7f865c202b20c97d32af0a3a1f10ba /Lib/test/regrtest.py | |
parent | eca7172c3c263affcdb881272b56fb7811cc9505 (diff) | |
download | cpython-36b3fbb0ee6e266381cec91a0a3c15fd403c3cfd.zip cpython-36b3fbb0ee6e266381cec91a0a3c15fd403c3cfd.tar.gz cpython-36b3fbb0ee6e266381cec91a0a3c15fd403c3cfd.tar.bz2 |
Issue #25220: Fix Lib/test/autotest.py
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index f01cad4..fcc3937 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -11,7 +11,7 @@ import importlib import os import sys -from test.libregrtest import main_in_temp_cwd +from test.libregrtest import main, main_in_temp_cwd if __name__ == '__main__': |