From 1c9c5ee630efd16d2f6b89af67a3b5b3adb0af2d Mon Sep 17 00:00:00 2001 From: grubert Date: Mon, 31 Dec 2012 11:20:52 +0000 Subject: [PATCH] fix typo git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7580 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- docutils/frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docutils/frontend.py b/docutils/frontend.py index 2f6a9a09a..366834085 100644 --- a/docutils/frontend.py +++ b/docutils/frontend.py @@ -174,7 +174,7 @@ def validate_comma_separated_list(setting, value, option_parser, if isinstance(value, unicode): value = [value] # this function is called for every option added to `value` - # -> split the last item and apped the result: + # -> split the last item and append the result: last = value.pop() classes = [cls.strip(u' \t\n') for cls in last.split(',') if cls.strip(u' \t\n')] -- 2.11.4.GIT