diff options
author | Georg Brandl <georg@python.org> | 2013-04-01 11:39:32 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-04-01 11:39:32 +0200 |
commit | 1af3e3ea71f0c0fea63141f20836b6cafbf9ff1c (patch) | |
tree | b3fd18795328347c142bb1adaa56ee00b0690e61 /tests/test_quickstart.py | |
parent | 21f0ca8197a2f41e70bc3f3334d6fc88a8a76553 (diff) | |
download | sphinx-git-1af3e3ea71f0c0fea63141f20836b6cafbf9ff1c.tar.gz |
tests: replace "from util import *" by explicit imports
Diffstat (limited to 'tests/test_quickstart.py')
-rw-r--r-- | tests/test_quickstart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index b0815447d..2340e04b7 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -12,7 +12,7 @@ import sys import time -from util import * +from util import raises, with_tempdir from sphinx import quickstart as qs from sphinx.util.console import nocolor, coloron |