mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
Renamed the maybequote
function to something better
This commit is contained in:
parent
c7ffc22819
commit
b321e07279
@ -13,7 +13,7 @@ import sys
|
|||||||
from mitmproxy import exceptions
|
from mitmproxy import exceptions
|
||||||
import mitmproxy.types
|
import mitmproxy.types
|
||||||
|
|
||||||
def maybequote(value):
|
def escape_and_quote(value):
|
||||||
"""
|
"""
|
||||||
This function takes the output from the lexer and puts it between quotes
|
This function takes the output from the lexer and puts it between quotes
|
||||||
in the following cases:
|
in the following cases:
|
||||||
@ -245,7 +245,7 @@ class CommandManager(mitmproxy.types._CommandBase):
|
|||||||
# ctx.log.info('[gilga] before parse.append. value = %s' % parts[i])
|
# ctx.log.info('[gilga] before parse.append. value = %s' % parts[i])
|
||||||
parse.append(
|
parse.append(
|
||||||
ParseResult(
|
ParseResult(
|
||||||
value=maybequote(parts[i]),
|
value=escape_and_quote(parts[i]),
|
||||||
type=typ,
|
type=typ,
|
||||||
valid=valid,
|
valid=valid,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user