From 5b9cafa224d438137c8511fcf3353c51d11be43e Mon Sep 17 00:00:00 2001 From: Erik Rose Date: Wed, 24 Apr 2013 13:07:59 -0700 Subject: Fix tox.ini syntax to work around a bug in tox. Tox was using the entire line, comment and all, as the folder name and making that ridiculous folder. --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 5d983d4..06bd4fd 100644 --- a/tox.ini +++ b/tox.ini @@ -4,4 +4,5 @@ envlist = py25, py26, py27, py32, py33 [testenv] commands = nosetests blessings deps = nose -changedir = .tox # So Python 3 runs don't pick up incompatible, un-2to3'd source from the cwd +# So Python 3 runs don't pick up incompatible, un-2to3'd source from the cwd: +changedir = .tox \ No newline at end of file -- cgit v1.2.1