From 0188383036e8334d668c0be76c078b9bd80494ad Mon Sep 17 00:00:00 2001 From: dmiller Date: Sun, 26 Jun 2016 04:39:29 +0000 Subject: [PATCH] pep8 error fixed. Closes #337 15:13: E126 continuation line over-indented for hanging indent 16:13: E126 continuation line over-indented for hanging indent 17:13: E126 continuation line over-indented for hanging indent --- zenmap/test/run_tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zenmap/test/run_tests.py b/zenmap/test/run_tests.py index 74b29dcc7..993f0bd1c 100644 --- a/zenmap/test/run_tests.py +++ b/zenmap/test/run_tests.py @@ -12,7 +12,7 @@ if __name__ == "__main__": os.chdir("..") suite = unittest.defaultTestLoader.discover( - start_dir=glob.glob("build/lib.*")[0], - pattern="*.py" - ) + start_dir=glob.glob("build/lib.*")[0], + pattern="*.py" + ) unittest.TextTestRunner().run(suite)