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