comparison hgext/releasenotes.py @ 49851:a47e86e8fd51

releasenotes: fix a typo in a comment
author Matt Harbison <matt_harbison@yahoo.com>
date Thu, 05 Jan 2023 17:04:16 -0500
parents de9ffb82ef4d
children 9ed17632ad83
comparison
equal deleted inserted replaced
49850:bcc45b33efb2 49851:a47e86e8fd51
37 command = registrar.command(cmdtable) 37 command = registrar.command(cmdtable)
38 38
39 try: 39 try:
40 # Silence a warning about python-Levenshtein. 40 # Silence a warning about python-Levenshtein.
41 # 41 #
42 # We don't need the the performance that much and it get anoying in tests. 42 # We don't need the performance that much and it gets annoying in tests.
43 import warnings 43 import warnings
44 44
45 with warnings.catch_warnings(): 45 with warnings.catch_warnings():
46 warnings.filterwarnings( 46 warnings.filterwarnings(
47 action="ignore", 47 action="ignore",