From 7e535596f9df777d2803eaf016db65b444bb592d Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Tue, 17 Feb 2015 17:46:14 +0100 Subject: [PATCH] Fix configuration file Turns out, python 2 throws an exception if there are spaces in front of the option names. --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 305608721..719cf062f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [pep8] - exclude = urls.py,*migrations* - max-line-length = 100 - ignore = W503 +exclude = urls.py,*migrations* +max-line-length = 100 +ignore = W503