From 9139092847661aa9f9c6daa4f0ea096c3cf4d68a Mon Sep 17 00:00:00 2001 From: William Ting Date: Wed, 18 Dec 2013 12:06:42 -0600 Subject: [PATCH] add surround_quotes() comment --- bin/utils.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/utils.py b/bin/utils.py index 5fce158..a1dcfc9 100644 --- a/bin/utils.py +++ b/bin/utils.py @@ -178,6 +178,10 @@ def second(xs): def surround_quotes(string): + """ + Bash has problems dealing with certain paths so we're surrounding all + path outputs with quotes. + """ if in_bash(): return '"{}"'.format(string) return string