From 4631b76550bd0ea6cbc86b260f290096fb130460 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Tue, 26 Aug 2014 15:29:44 +0000 Subject: [PATCH] Fix indentation in tox.ini Previously, a tab was used to indent a line with a block of code which otherwise uses eight spaces, causing it to display strangely in text editors which do not have tabstop=8 set. TrivialFix Change-Id: I99a432373beebac912df88e6685db26e738bf654 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index b2182ffe..f9868cec 100644 --- a/tox.ini +++ b/tox.ini @@ -9,7 +9,7 @@ install_command = pip install -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} OS_STDOUT_NOCAPTURE=False OS_STDERR_NOCAPTURE=False - PYTHONHASHSEED=0 + PYTHONHASHSEED=0 deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt