config: Don't escape <eq> specially anymore.

This commit is contained in:
Florian Bruhin 2014-12-08 18:16:21 +01:00
parent 4ab4ac3db6
commit 175d01f516
2 changed files with 0 additions and 2 deletions

View File

@ -366,7 +366,6 @@ class ConfigManager(QObject):
if k.startswith(self.ESCAPE_CHAR):
k = k[1:]
# configparser can't handle = in keys :(
k = k.replace('<eq>', '=')
if (sectname, k) in self.RENAMED_OPTIONS:
k = self.RENAMED_OPTIONS[sectname, k]
try:

View File

@ -58,7 +58,6 @@ FIRST_COMMENT = r"""
# You will need to escape the following values:
# - # at the start of the line (at the first position of the key) (\#)
# - $ in a value ($$)
# - = in a value as <eq>
"""