Sign in
apache
/
casbin-python-cli
/
refs/heads/master
/
.
/
casbin_cli
/
utils.py
blob: 6a9c2a65151999a3d59ad09135954549276971fd [
file
] [
log
] [
blame
]
def
process_line_breaks
(
text
):
"""Handle line breaks in strings"""
if
text
is
None
:
return
None
return
text
.
replace
(
'\\n'
,
'\n'
)