MANUAL: fix typo about variable declaration in configuration file

I included a wrong change in commit dcfdf2ade7 writen by Sebastian.

As he said:

	> I think the first colon should be an equals sign...  :-)

	Actually no, this was on purpose.

	http://docs.python.org/library/configparser.html:

	[My Section]
	foodir: %(dir)s/whatever
	dir=frob
	long: this value continues
   	in the next line

Reported-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht 2011-08-30 22:05:44 +02:00
parent dcfdf2ade7
commit f10e3a58fc
1 changed files with 1 additions and 1 deletions

View File

@ -478,7 +478,7 @@ Another nametrans transpose example
Put everything in a GMX. subfolder except for the boxes INBOX, Draft, and Sent which should keep the same name::
nametrans = lambda folder: folder if folder in ['INBOX', 'Drafts', 'Sent'] \
nametrans: lambda folder: folder if folder in ['INBOX', 'Drafts', 'Sent'] \
else re.sub(r'^', r'GMX.', folder)
2 IMAP using name translations