D5822: configitems: use raw strings for hidden-{command,topic} items

indygreg (Gregory Szorc) phabricator at mercurial-scm.org
Mon Feb 4 18:36:40 EST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGb5642239fb32: configitems: use raw strings for hidden-{command,topic} items (authored by indygreg, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D5822?vs=13749&id=13782

REVISION DETAIL
  https://phab.mercurial-scm.org/D5822

AFFECTED FILES
  mercurial/configitems.py

CHANGE DETAILS

diff --git a/mercurial/configitems.py b/mercurial/configitems.py
--- a/mercurial/configitems.py
+++ b/mercurial/configitems.py
@@ -720,11 +720,11 @@
 coreconfigitem('fsmonitor', 'warn_update_file_count',
     default=50000,
 )
-coreconfigitem('help', 'hidden-command\..*',
+coreconfigitem('help', br'hidden-command\..*',
     default=False,
     generic=True,
 )
-coreconfigitem('help', 'hidden-topic\..*',
+coreconfigitem('help', br'hidden-topic\..*',
     default=False,
     generic=True,
 )



To: indygreg, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list