From 0b709d9d5d64d5b515ee0aed943caae542156565 Mon Sep 17 00:00:00 2001 From: grubert Date: Mon, 31 Dec 2012 12:32:26 +0000 Subject: [PATCH] TODO for BUG: 3598893 --stylesheet/path broken git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7582 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- docutils/frontend.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docutils/frontend.py b/docutils/frontend.py index 366834085..1dbaa4706 100644 --- a/docutils/frontend.py +++ b/docutils/frontend.py @@ -171,6 +171,12 @@ def validate_comma_separated_list(setting, value, option_parser, """ # `value` is already a list when given as command line option # and "action" is "append" + # TODO fix here or in buildhtml or process + # buildhtml.py:calls + # values=frontend.Values() + # and later + # optparse _process_args, _process_long_opt + # but then value is NOT unicode but str in python2 if isinstance(value, unicode): value = [value] # this function is called for every option added to `value` -- 2.11.4.GIT