From 23c1d703555bf8d411023a4eed6305d2b78ac977 Mon Sep 17 00:00:00 2001 From: Rob Dennis Date: Tue, 18 Feb 2014 02:54:47 -0500 Subject: fixes #18 - correctly handling unicode conversion where appropriate - we were not really handling unicode at all, and the existing doctest was asserting the incorrect behavior - refactored to use six.py - refactored a doctest affected by this fix to be py.test test (essentially a 1-to-1 port) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 5e74c30..3e466e2 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from configobj import __version__ as VERSION NAME = 'configobj' -MODULES = 'configobj', 'validate' +MODULES = 'configobj', 'validate', 'six' DESCRIPTION = 'Config file reading, writing and validation.' -- cgit v1.2.1