mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Bug 899818 - Don't add quotes to values when writing Mercurial configs; r=Gijs
DONTBUILD (NPOTB)
This commit is contained in:
parent
6a449045ab
commit
5c5c830a87
@ -17,8 +17,12 @@ class MercurialConfig(object):
|
||||
def __init__(self, infile=None):
|
||||
"""Create a new instance, optionally from an existing hgrc file."""
|
||||
|
||||
# write_empty_values is necessary to prevent built-in extensions (which
|
||||
# have no value) from being dropped on write.
|
||||
# list_values aren't needed by Mercurial and disabling them prevents
|
||||
# quotes from being added.
|
||||
self._c = ConfigObj(infile=infile, encoding='utf-8',
|
||||
write_empty_values=True)
|
||||
write_empty_values=True, list_values=False)
|
||||
|
||||
@property
|
||||
def config(self):
|
||||
|
Loading…
Reference in New Issue
Block a user