comparison mercurial/chgserver.py @ 31010:cb899ee133d8

chgserver: move comments in config example "#" must be the first character of a line to mark the text as comments. So let's change the docstring.
author Jun Wu <quark@fb.com>
date Thu, 16 Feb 2017 23:10:47 -0800
parents 48dea083f66d
children fbce78c58f1e
comparison
equal deleted inserted replaced
31009:74af89c66834 31010:cb899ee133d8
29 ------ 29 ------
30 30
31 :: 31 ::
32 32
33 [chgserver] 33 [chgserver]
34 idletimeout = 3600 # seconds, after which an idle server will exit 34 # how long (in seconds) should an idle chg server exit
35 skiphash = False # whether to skip config or env change checks 35 idletimeout = 3600
36
37 # whether to skip config or env change checks
38 skiphash = False
36 """ 39 """
37 40
38 from __future__ import absolute_import 41 from __future__ import absolute_import
39 42
40 import errno 43 import errno