Skip to content

Commit 923d830

Browse files
committed
Merge branch 'master' of https://github.com/securisec/ripgrepy
2 parents 5266547 + 3fc9092 commit 923d830

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ripgrepy/__init__.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ def __init__(self, regex_pattern: str, path: str, rg_path: str = "rg"):
177177
self.P = self.pcre2
178178
#: Short syntax for pretty
179179
self.p = self.pretty
180-
#: Short syntax for quite
181-
self.q = self.quite
180+
#: Short syntax for quiet
181+
self.q = self.quiet
182182
#: Short syntax for regexp
183183
self.e = self.regexp
184184
#: Short syntax for replace
@@ -1501,7 +1501,7 @@ def pretty(self) -> Ripgrepy:
15011501
return self
15021502

15031503
@_logger
1504-
def quite(self) -> Ripgrepy:
1504+
def quiet(self) -> Ripgrepy:
15051505
"""
15061506
Do not print anything to stdout. If a match is found in a file,
15071507
then ripgrep will stop searching. This is useful when ripgrep is
@@ -1514,7 +1514,7 @@ def quite(self) -> Ripgrepy:
15141514
:return: self
15151515
:rtype: Ripgrepy
15161516
"""
1517-
self.command.append("--quite")
1517+
self.command.append("--quiet")
15181518
return self
15191519

15201520
@_logger

0 commit comments

Comments
 (0)