From 379dced786186092ceb3c3b5545c7fc96e42dadd Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Mon, 17 Feb 2014 20:20:44 +0100 Subject: [PATCH] Flake8 stuff I should make a habit of testing nose AND flake before pushing... --- vispy/util/tests/test_import.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vispy/util/tests/test_import.py b/vispy/util/tests/test_import.py index aa74eeb98d..ba4925c801 100644 --- a/vispy/util/tests/test_import.py +++ b/vispy/util/tests/test_import.py @@ -14,7 +14,7 @@ def check_output(*popenargs, **kwargs): """ Minimal py 2.6 compatible version of subprocess.check_output() - + Py2.6 does not have check_output. Taken from https://gist.github.com/edufelipe/1027906 """ @@ -33,7 +33,7 @@ def check_output(*popenargs, **kwargs): def loaded_vispy_modules(import_module, depth=None): """ Import the given module in subprocess and return loaded modules - + Import a certain module in a clean subprocess and return the vispy modules that are subsequently loaded. The given depth indicates the module level (i.e. depth=1 will only yield 'vispy.app'