dr1p_pymux/pymux/commands/utils.py

16 lines
367 B
Python

from __future__ import unicode_literals
__all__ = (
'wrap_argument',
)
def wrap_argument(text):
"""
Wrap command argument in quotes and escape when this contains special characters.
"""
if not any(x in text for x in [' ', '"', "'", '\\']):
return text
else:
return '"%s"' % (text.replace('\\', r'\\').replace('"', r'\"'), )